mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 10:23:52 +01:00
553 B
553 B
title | layout | version |
---|---|---|
dfr take | command | 0.59.1 |
Creates new dataframe using the given indices
Signature
> dfr take (indices)
Parameters
indices
: list of indices used to take data
Examples
Takes selected rows from dataframe
> let df = ([[a b]; [4 1] [5 2] [4 3]] | dfr to-df);
let indices = ([0 2] | dfr to-df);
$df | dfr take $indices
Takes selected rows from series
> let series = ([4 1 5 2 4 3] | dfr to-df);
let indices = ([0 2] | dfr to-df);
$series | dfr take $indices