Convert Series to DataFrame
Description
Convert Series to DataFrame
Usage
<Series>$to_frame()
Value
DataFrame
Examples
#> shape: (4, 1)
#> ┌─────┐
#> │ │
#> │ --- │
#> │ i32 │
#> ╞═════╡
#> │ 1 │
#> │ 2 │
#> │ 3 │
#> │ 4 │
#> └─────┘
#> shape: (4, 1)
#> ┌─────┐
#> │ bob │
#> │ --- │
#> │ i32 │
#> ╞═════╡
#> │ 1 │
#> │ 2 │
#> │ 3 │
#> │ 4 │
#> └─────┘