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 BooleanChunked

source§

impl ChunkVar for ListChunked

source§

impl ChunkVar for Utf8Chunked

source§

impl<T> ChunkVar for ChunkedArray<T>where T: PolarsNumericType, <T::Native as Simd>::Simd: Add<Output = <T::Native as Simd>::Simd> + Sum<T::Native> + SimdOrd<T::Native>,

source§

impl<T: PolarsObject> ChunkVar for ObjectChunked<T>

Available on crate feature object only.