Struct polars_plan::dsl::ListNameSpace
source · [−]pub struct ListNameSpace(pub Expr);
Expand description
Specialized expressions for Series
of DataType::List
.
Tuple Fields
0: Expr
Implementations
sourceimpl ListNameSpace
impl ListNameSpace
sourcepub fn mean(self) -> Expr
pub fn mean(self) -> Expr
Compute the mean of every sublist and return a Series
of dtype Float64
sourcepub fn sort(self, options: SortOptions) -> Expr
pub fn sort(self, options: SortOptions) -> Expr
Sort every sublist.
sourcepub fn join(self, separator: &str) -> Expr
pub fn join(self, separator: &str) -> Expr
Join all string items in a sublist and place a separator between them.
Error
This errors if inner type of list != DataType::Utf8
.
sourcepub fn diff(self, n: usize, null_behavior: NullBehavior) -> Expr
Available on crate feature diff
only.
pub fn diff(self, n: usize, null_behavior: NullBehavior) -> Expr
diff
only.Diff every sublist.
sourcepub fn to_struct(
self,
n_fields: ListToStructWidthStrategy,
name_generator: Option<NameGenerator>
) -> Expr
Available on crate feature list_to_struct
only.
pub fn to_struct(
self,
n_fields: ListToStructWidthStrategy,
name_generator: Option<NameGenerator>
) -> Expr
list_to_struct
only.Convert this List
to a Series
of type Struct
. The width will be determined according to
ListToStructWidthStrategy
and the names of the fields determined by the given name_generator
.
Auto Trait Implementations
impl !RefUnwindSafe for ListNameSpace
impl Send for ListNameSpace
impl Sync for ListNameSpace
impl Unpin for ListNameSpace
impl !UnwindSafe for ListNameSpace
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more