polars.Series.arr.sum#

Series.arr.sum() Series[source]#

Compute the sum values of the sub-arrays.

Examples

>>> df = pl.DataFrame(
...     data={"a": [[1, 2], [4, 3]]},
...     schema={"a": pl.Array(width=2, inner=pl.Int64)},
... )
>>> df.select(pl.col("a").arr.sum())
shape: (2, 1)
┌─────┐
│ a   │
│ --- │
│ i64 │
╞═════╡
│ 3   │
│ 7   │
└─────┘