I have a string representation of a DataFrame
:
shape: (3, 2)
┌───────┬──────┐
│ alpha ┆ beta │
│ --- ┆ --- │
│ i32 ┆ i32 │
╞═══════╪══════╡
│ 0 ┆ 1 │
│ 1 ┆ 0 │
│ 2 ┆ 0 │
└───────┴──────┘
Is there any existing functionality in Polars to parse this back into a DataFrame
?