Calculates the largest value in the given field within the group
| 45 | |
| 46 | |
| 47 | class max(FieldOnlyReducer): |
| 48 | """ |
| 49 | Calculates the largest value in the given field within the group |
| 50 | """ |
| 51 | |
| 52 | NAME = "MAX" |
| 53 | |
| 54 | def __init__(self, field: str) -> None: |
| 55 | super().__init__(field) |
| 56 | |
| 57 | |
| 58 | class avg(FieldOnlyReducer): |
no outgoing calls