Convert this struct Series to a DataFrame with a separate column for each field
Description
Convert this struct Series to a DataFrame with a separate column for each field
Usage
series_struct_unnest()
Value
A polars DataFrame
See Also
-
as_polars_df()
Examples
#> shape: (2, 2)
#> ┌─────┬─────┐
#> │ a ┆ b │
#> │ --- ┆ --- │
#> │ f64 ┆ f64 │
#> ╞═════╪═════╡
#> │ 1.0 ┆ 2.0 │
#> │ 3.0 ┆ 4.0 │
#> └─────┴─────┘