dfr collect for lazyframe

Collect lazy dataframe into eager dataframe.

WARNING

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

Signature

> dfr collect {flags}

Input/output types:

inputoutput
anyany

Examples

drop duplicates

> [[a b]; [1 2] [3 4]] | dfr into-lazy | dfr collect
╭───┬───┬───╮
 # │ a │ b │
├───┼───┼───┤
 0  1  2 
 1  3  4 
╰───┴───┴───╯