I have the following code:
use polars::prelude::*;
use polars_lazy::prelude::*;
pub fn main() -> Result<(), PolarsError> {
let df = df! (
"start" => &[3, 8, 5],
"end" => &[6, 9, 7],
"idx" => &[0, 1, 2],
)?;
}
How do I get "start" as a series? I can't see a to_series or anything.