nushell/docs/commands/flatten.md
JT 8c0a2d3c15
Auto-generate markdown command docs (#4451)
* Finish updating

* a couple improvements

* Update renames

* cleanup examples
2022-02-13 21:22:51 -05:00

768 B

title layout version
flatten command 0.59.0

Flatten the table.

Signature

> flatten ...rest

Parameters

  • ...rest: optionally flatten data by column

Examples

flatten a table

> [[N, u, s, h, e, l, l]] | flatten 

flatten a table, get the first item

> [[N, u, s, h, e, l, l]] | flatten | first

flatten a column having a nested table

> [[origin, people]; [Ecuador, ([[name, meal]; ['Andres', 'arepa']])]] | flatten | get meal

restrict the flattening by passing column names

> [[origin, crate, versions]; [World, ([[name]; ['nu-cli']]), ['0.21', '0.22']]] | flatten versions | last | get versions

Flatten inner table

> { a: b, d: [ 1 2 3 4 ],  e: [ 4 3  ] } | flatten