forked from extern/nushell
8c0a2d3c15
* Finish updating * a couple improvements * Update renames * cleanup examples
346 B
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 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