mirror of
https://github.com/danbulant/nushell
synced 2026-05-19 12:29:03 +00:00
345 B
345 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 slicesize: 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