Series.max

Series.max(numeric_only: bool | None = None) Series[source]

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

:pandas_api_docs:`pandas.Series.max`

Examples

>>> from tests import OPENSEARCH_TEST_CLIENT
>>> s = oml.DataFrame(OPENSEARCH_TEST_CLIENT, 'flights')['AvgTicketPrice']
>>> int(s.max())
1199