Aggregate values into a list
Description
Aggregate values into a list
Usage
<Expr>$implode()
Value
A polars expression
Examples
#> shape: (3, 2)
#> ┌───────────┬─────┐
#> │ a ┆ b │
#> │ --- ┆ --- │
#> │ list[i32] ┆ i32 │
#> ╞═══════════╪═════╡
#> │ [1, 2, 3] ┆ 4 │
#> │ [1, 2, 3] ┆ 5 │
#> │ [1, 2, 3] ┆ 6 │
#> └───────────┴─────┘