eland.Series.max¶
- Series.max(numeric_only: bool | None = None) Series¶
Return the maximum of the Series values
TODO - implement remainder of pandas arguments, currently non-numerics are not supported
Returns¶
- float
max value
See Also¶
Examples¶
>>> s = ed.DataFrame('http://localhost:9200', 'flights')['AvgTicketPrice'] >>> int(s.max()) 1199