polars.Expr.gather_every#
- Expr.gather_every(n: int) Self [source]#
Take every nth value in the Series and return as a new Series.
- Parameters:
- n
Gather every n-th row.
Examples
>>> df = pl.DataFrame({"foo": [1, 2, 3, 4, 5, 6, 7, 8, 9]}) >>> df.select(pl.col("foo").gather_every(3)) shape: (3, 1) ┌─────┐ │ foo │ │ --- │ │ i64 │ ╞═════╡ │ 1 │ │ 4 │ │ 7 │ └─────┘