eland.DataFrame.max

DataFrame.max(numeric_only: bool = True) → pandas.core.series.Series

Return the maximum value for each numeric column

TODO - implement remainder of pandas arguments, currently non-numerics are not supported

Returns
pandas.Series

max value for each numeric column

Examples

>>> df = ed.DataFrame('localhost', 'flights')
>>> df.max()
AvgTicketPrice        1199.73
Cancelled                True
DistanceKilometers    19881.5
DistanceMiles         12353.8
FlightDelay              True
FlightDelayMin            360
FlightTimeHour         31.715
FlightTimeMin          1902.9
dayOfWeek                   6
dtype: object