mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 18:33:50 +01:00
c0a1d18e3d
* feat: update #4455, regenerate commands' docs * chore: update make_docs script
553 B
553 B
title | layout | version |
---|---|---|
dfr take | command | 0.59.0 |
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