Trait polars_core::chunked_array::ops::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§