mirror of
https://github.com/nushell/nushell.git
synced 2024-12-27 01:19:25 +01:00
8c0a2d3c15
* Finish updating * a couple improvements * Update renames * cleanup examples
30 lines
415 B
Markdown
30 lines
415 B
Markdown
---
|
|
title: dfr sort
|
|
layout: command
|
|
version: 0.59.0
|
|
---
|
|
|
|
Creates new sorted dataframe or series
|
|
|
|
## Signature
|
|
|
|
```> dfr sort ...rest --reverse```
|
|
|
|
## Parameters
|
|
|
|
- `...rest`: column names to sort dataframe
|
|
- `--reverse`: invert sort
|
|
|
|
## Examples
|
|
|
|
Create new sorted dataframe
|
|
```shell
|
|
> [[a b]; [3 4] [1 2]] | dfr to-df | dfr sort a
|
|
```
|
|
|
|
Create new sorted series
|
|
```shell
|
|
> [3 4 1 2] | dfr to-df | dfr sort
|
|
```
|
|
|