Trait polars_core::frame::select::Selection [−][src]
pub trait Selection<'a, S> {
fn to_selection_vec(self) -> Vec<&'a str>;
fn single(&self) -> Option<&str> { ... }
}
Expand description
Allow selection by:
&str => df.select(“my-column”), (&str)“ => df.select((“col_1”, “col_2”)), Vec<&str)“ => df.select([“col_a”, “col_b”]),