polars.internals.expr.ExprListNameSpace.sort¶
- ExprListNameSpace.sort(reverse: bool = False) polars.internals.expr.Expr ¶
Sort the arrays in the list
Examples
>>> df = pl.DataFrame( ... { ... "a": [[3, 2, 1], [9, 1, 2]], ... } ... ) >>> df.select(pl.col("a").arr.sort()) shape: (2, 1) ┌────────────┐ │ a │ │ --- │ │ list [i64] │ ╞════════════╡ │ [1, 2, 3] │ ├╌╌╌╌╌╌╌╌╌╌╌╌┤ │ [1, 2, 9] │ └────────────┘