mirror of
https://github.com/nushell/nushell.git
synced 2025-04-03 06:01:11 +02:00
# Description The help description on `transpose --header-row/-r` appears to be wrong (and now that I understand that, it probably explains why it's confused me for so long). It currently says: ``` -r, --header-row - treat the first row as column names ``` This just looks wrong - The first **row** of the input data is not considered. It's the first **column** that is used to create the header-row of the transposed table. For example: To record using `-dr`: ```nu [[col-names values ]; [foo 1 ] [bar 5 ] [baz 7 ] [cat -12 ] ] | transpose -dr ╭─────┬─────╮ │ foo │ 1 │ │ bar │ 5 │ │ baz │ 7 │ │ cat │ -12 │ ╰─────┴─────╯ ``` To table using `-r`: ```nu [[col-names values ]; [foo 1 ] [bar 5 ] [baz 7 ] [cat -12 ] ] | transpose -r ╭───┬─────┬─────┬─────┬─────╮ │ # │ foo │ bar │ baz │ cat │ ├───┼─────┼─────┼─────┼─────┤ │ 0 │ 1 │ 5 │ 7 │ -12 │ ╰───┴─────┴─────┴─────┴─────╯ ``` # User-Facing Changes Updates the help description to: ``` -r, --header-row - use the first input column as the table header-row (or keynames when combined with --as-record) ``` # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib` # After Submitting N/A |
||
---|---|---|
.. | ||
src | ||
tests | ||
Cargo.toml | ||
LICENSE | ||
README.md |
This crate contains the majority of our commands
We allow ourselves to move some of the commands in nu-command
to nu-cmd-*
crates as needed.
Internal Nushell crate
This crate implements components of Nushell and is not designed to support plugin authors or other users directly.