Struct polars::prelude::ListNameSpace

source ·
pub struct ListNameSpace(pub Expr);
Available on crate feature lazy only.
Expand description

Specialized expressions for Series of DataType::List.

Tuple Fields§

§0: Expr

Implementations§

source§

impl ListNameSpace

source

pub fn len(self) -> Expr

Return the number of elements in each list.

Null values are treated like regular elements in this context.

source

pub fn max(self) -> Expr

Compute the maximum of the items in every sublist.

source

pub fn min(self) -> Expr

Compute the minimum of the items in every sublist.

source

pub fn sum(self) -> Expr

Compute the sum the items in every sublist.

source

pub fn mean(self) -> Expr

Compute the mean of every sublist and return a Series of dtype Float64

source

pub fn median(self) -> Expr

source

pub fn std(self, ddof: u8) -> Expr

source

pub fn var(self, ddof: u8) -> Expr

source

pub fn sort(self, options: SortOptions) -> Expr

Sort every sublist.

source

pub fn reverse(self) -> Expr

Reverse every sublist

source

pub fn unique(self) -> Expr

Keep only the unique values in every sublist.

source

pub fn unique_stable(self) -> Expr

Keep only the unique values in every sublist.

source

pub fn n_unique(self) -> Expr

source

pub fn get(self, index: Expr, null_on_oob: bool) -> Expr

Get items in every sublist by index.

source

pub fn first(self) -> Expr

Get first item of every sublist.

source

pub fn last(self) -> Expr

Get last item of every sublist.

source

pub fn join(self, separator: Expr, ignore_nulls: bool) -> Expr

Join all string items in a sublist and place a separator between them.

§Error

This errors if inner type of list != DataType::String.

source

pub fn arg_min(self) -> Expr

Return the index of the minimal value of every sublist

source

pub fn arg_max(self) -> Expr

Return the index of the maximum value of every sublist

source

pub fn diff(self, n: i64, null_behavior: NullBehavior) -> Expr

Available on crate feature diff only.

Diff every sublist.

source

pub fn shift(self, periods: Expr) -> Expr

Shift every sublist.

source

pub fn slice(self, offset: Expr, length: Expr) -> Expr

Slice every sublist.

source

pub fn head(self, n: Expr) -> Expr

Get the head of every sublist

source

pub fn tail(self, n: Expr) -> Expr

Get the tail of every sublist

source

pub fn to_array(self, width: usize) -> Expr

Available on crate feature dtype-array only.

Convert a List column into an Array column with the same inner data type.

source

pub fn contains<E>(self, other: E) -> Expr
where E: Into<Expr>,

Available on crate feature is_in only.

Check if the list array contain an element

Trait Implementations§

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V