eland.DataFrame.max

DataFrame.max(self, numeric_only=True)

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.729004
Cancelled                 1.000000
DistanceKilometers    19881.482422
DistanceMiles         12353.780273
FlightDelay               1.000000
FlightDelayMin          360.000000
FlightTimeHour           31.715034
FlightTimeMin          1902.901978
dayOfWeek                 6.000000
dtype: float64