mirror of
https://github.com/nushell/nushell
synced 2025-01-01 15:58:55 +00:00
8c0a2d3c15
* Finish updating * a couple improvements * Update renames * cleanup examples
301 B
301 B
title | layout | version |
---|---|---|
dfr first | command | 0.59.0 |
Creates new dataframe with first rows
Signature
> dfr first (rows)
Parameters
rows
: Number of rows for head
Examples
Create new dataframe with head rows
> [[a b]; [1 2] [3 4]] | dfr to-df | dfr first 1