polars.Series.arr.contains#
- Series.arr.contains( ) Series [source]#
Check if sub-arrays contain the given item.
- Parameters:
- item
Item that will be checked for membership
- Returns:
- Series
Series of data type
Boolean
.
Examples
>>> s = pl.Series( ... "a", [[3, 2, 1], [1, 2, 3], [4, 5, 6]], dtype=pl.Array(pl.Int32, 3) ... ) >>> s.arr.contains(1) shape: (3,) Series: 'a' [bool] [ true true false ]