Explode a list or String Series
Description
This is an alias for
<Expr>$explode()
.
Usage
<Expr>$flatten()
Value
Expr
Examples
#> shape: (2, 2)
#> ┌─────┬───────────┐
#> │ x ┆ y │
#> │ --- ┆ --- │
#> │ str ┆ list[i32] │
#> ╞═════╪═══════════╡
#> │ abc ┆ [1, 2, 3] │
#> │ ab ┆ [3, 4, 5] │
#> └─────┴───────────┘
#> shape: (6, 1)
#> ┌─────┐
#> │ y │
#> │ --- │
#> │ i32 │
#> ╞═════╡
#> │ 1 │
#> │ 2 │
#> │ 3 │
#> │ 3 │
#> │ 4 │
#> │ 5 │
#> └─────┘