nushell/docs/commands/dfr_slice.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

346 B

title layout version
dfr slice command 0.59.0

Creates new dataframe from a slice of rows

Signature

> dfr slice (offset) (size)

Parameters

  • offset: start of slice
  • size: size of slice

Examples

Create new dataframe from a slice of the rows

> [[a b]; [1 2] [3 4]] | dfr to-df | dfr slice 0 1