Method: Polars::Expr#sort_by
- Defined in:
- lib/polars/expr.rb
permalink #sort_by(by, *more_by, reverse: false, nulls_last: false, multithreaded: true, maintain_order: false) ⇒ Expr
Sort this column by the ordering of another column, or multiple other columns.
In projection/ selection context the whole column is sorted. If used in a group by context, the groups are sorted.
1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 |
# File 'lib/polars/expr.rb', line 1587 def sort_by(by, *more_by, reverse: false, nulls_last: false, multithreaded: true, maintain_order: false) by = Utils.parse_into_list_of_expressions(by, *more_by) reverse = Utils.extend_bool(reverse, by.length, "reverse", "by") nulls_last = Utils.extend_bool(nulls_last, by.length, "nulls_last", "by") _from_rbexpr( _rbexpr.sort_by( by, reverse, nulls_last, multithreaded, maintain_order ) ) end |