mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 02:13:47 +01:00
c0a1d18e3d
* feat: update #4455, regenerate commands' docs * chore: update make_docs script
333 B
333 B
title | layout | version |
---|---|---|
dfr rename-col | command | 0.59.0 |
rename a dataframe column
Signature
> dfr rename-col (from) (to)
Parameters
from
: column name to be renamedto
: new column name
Examples
Renames a dataframe column
> [[a b]; [1 2] [3 4]] | dfr to-df | dfr rename-col a a_new