polars.Series.limit#
- Series.limit(n: int = 10) Series[source]#
Get the first
nelements.Alias for
Series.head().- Parameters:
- n
Number of elements to return. If a negative value is passed, return all elements except the last
abs(n).
See also
Examples
>>> s = pl.Series("a", [1, 2, 3, 4, 5]) >>> s.limit(3) shape: (3,) Series: 'a' [i64] [ 1 2 3 ]
Pass a negative value to get all rows
exceptthe lastabs(n).>>> s.limit(-3) shape: (2,) Series: 'a' [i64] [ 1 2 ]