W3cubDocs

/Nushell

dfr arg-sort for dataframe

Returns indexes for a sorted series.

Signature

> dfr arg-sort {flags}

Flags

  • --reverse, -r: reverse order
  • --nulls-last, -n: nulls ordered last
  • --maintain-order, -m: maintain order on sorted items

Input/output types:

input output
any any

Examples

Returns indexes for a sorted series

> [12233] |dfr into-df|dfr arg-sort
╭───┬──────────╮
# │ arg_sort │
├───┼──────────┤
00
11
22
33
44
╰───┴──────────╯

Returns indexes for a sorted series

> [12233] |dfr into-df|dfr arg-sort-r
╭───┬──────────╮
# │ arg_sort │
├───┼──────────┤
03
14
21
32
40
╰───┴──────────╯

Tips: Dataframe commands were not shipped in the official binaries by default, you have to build it with --features=dataframe flag

Copyright © 2019–2023 The Nushell Project DevelopersLicensed under the MIT License.
https://www.nushell.sh/commands/docs/dfr_arg-sort.html