polars.Series.max#

Series.max() PythonLiteral | None[source]#

Get the maximum value in this Series.

Examples

>>> s = pl.Series("a", [1, 2, 3])
>>> s.max()
3