polars.Series.min# Series.min() → PythonLiteral | None[source]# Get the minimal value in this Series. Examples >>> s = pl.Series("a", [1, 2, 3]) >>> s.min() 1