Array#

The following methods are available under the Series.arr attribute.

Series.arr.max()

Compute the max values of the sub-arrays.

Series.arr.min()

Compute the min values of the sub-arrays.

Series.arr.sum()

Compute the sum values of the sub-arrays.

Series.arr.to_list()

Convert an Array column into a List column with the same inner data type.

Series.arr.unique(*[, maintain_order])

Get the unique/distinct values in the array.