dfr lowercase for dataframe

Lowercase the strings in the column.

WARNING

Dataframe commands were not shipped in the official binaries by default, you have to build it with --features=dataframe flag

Signature

> dfr lowercase {flags}

Input/output types:

inputoutput
anyany

Examples

Modifies strings to lowercase

> [Abc aBc abC] | dfr into-df | dfr lowercase
╭───┬─────╮
 # │  0  │
├───┼─────┤
 0  abc 
 1  abc 
 2  abc 
╰───┴─────╯