Skip to content

Latest commit

 

History

History
80 lines (57 loc) · 1.89 KB

File metadata and controls

80 lines (57 loc) · 1.89 KB

Returns DataFrame with rows sorted by one or several columns.

By default, columns are sorted in ascending order with null values going first. Available modifiers:

  • .desc — changes column sort order from ascending to descending
  • .nullsLast — forces null values to be placed at the end of the order

Related operations:

See column selectors for how to select the columns for this operation.

df.sortBy { age }
df.sortBy { age and name.firstName.desc() }
df.sortBy { weight.nullsLast() }
df.sortBy("age")
df.sortBy { "age" and "name"["firstName"].desc() }
df.sortBy { "weight".nullsLast() }

sortByDesc

Returns DataFrame sorted by one or several columns in descending order.

See column selectors for how to select the columns for this operation.

df.sortByDesc { age and weight }
df.sortByDesc("age", "weight")

sortWith

Returns DataFrame sorted with comparator.

df.sortWith { row1, row2 ->
    when {
        row1.age < row2.age -> -1
        row1.age > row2.age -> 1
        else -> row1.name.firstName.compareTo(row2.name.firstName)
    }
}