Trait polars::prelude::ChunkVar

source ·
pub trait ChunkVar {
    // Provided methods
    fn var(&self, _ddof: u8) -> Option<f64> { ... }
    fn std(&self, _ddof: u8) -> Option<f64> { ... }
}
Expand description

Variance and standard deviation aggregation.

Provided Methods§

source

fn var(&self, _ddof: u8) -> Option<f64>

Compute the variance of this ChunkedArray/Series.

source

fn std(&self, _ddof: u8) -> Option<f64>

Compute the standard deviation of this ChunkedArray/Series.

Implementors§

source§

impl ChunkVar for ChunkedArray<BooleanType>

source§

impl ChunkVar for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl ChunkVar for ChunkedArray<ListType>

source§

impl ChunkVar for ChunkedArray<StringType>

source§

impl<T> ChunkVar for ChunkedArray<ObjectType<T>>
where T: PolarsObject,

Available on crate feature object only.
source§

impl<T> ChunkVar for ChunkedArray<T>