polars.Series.arr.min# Series.arr.min() → Series[source]# Compute the min values of the sub-arrays. Examples >>> s = pl.Series( ... "a", [[1, 2], [4, 3]], dtype=pl.Array(inner=pl.Int64, width=2) ... ) >>> s.arr.min() shape: (2,) Series: 'a' [i64] [ 1 3 ]