dfr arg-sort
for dataframe> dfr arg-sort {flags}
--reverse, -r
: reverse order--nulls-last, -n
: nulls ordered last--maintain-order, -m
: maintain order on sorted itemsinput | output |
---|---|
any | any |
Returns indexes for a sorted series
> [12233] |dfr into-df|dfr arg-sort
╭───┬──────────╮
│# │ arg_sort │
├───┼──────────┤
│0│0│
│1│1│
│2│2│
│3│3│
│4│4│
╰───┴──────────╯
Returns indexes for a sorted series
> [12233] |dfr into-df|dfr arg-sort-r
╭───┬──────────╮
│# │ arg_sort │
├───┼──────────┤
│0│3│
│1│4│
│2│1│
│3│2│
│4│0│
╰───┴──────────╯
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