polars collect for lazyframe

Collect lazy dataframe into eager dataframe.

Signature

> polars collect {flags}

Input/output types:

inputoutput
anyany

Examples

drop duplicates

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