dfr collect for lazyframe

Collect lazy dataframe into eager dataframe.

Signature

> dfr collect

Input/output types:

inputoutput
anyany

Examples

drop duplicates

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

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