polars.Series.sort#

Series.sort(
*,
descending: bool = False,
nulls_last: bool = False,
in_place: bool = False,
) Self[source]#

Sort this Series.

Parameters:
descending

Sort in descending order.

nulls_last

Place null values last instead of first.

in_place

Sort in-place.

Examples

>>> s = pl.Series("a", [1, 3, 4, 2])
>>> s.sort()
shape: (4,)
Series: 'a' [i64]
[
        1
        2
        3
        4
]
>>> s.sort(descending=True)
shape: (4,)
Series: 'a' [i64]
[
        4
        3
        2
        1
]