dfr slice
for dataframe
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 into-df | dfr slice 0 1
╭───┬───┬───╮
│ # │ a │ b │
├───┼───┼───┤
│ 0 │ 1 │ 2 │
╰───┴───┴───╯