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§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl ChunkVar for ChunkedArray<BooleanType>
impl ChunkVar for ChunkedArray<FixedSizeListType>
Available on crate feature
dtype-array only.impl ChunkVar for ChunkedArray<ListType>
impl ChunkVar for ChunkedArray<StringType>
impl<T> ChunkVar for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
Available on crate feature
object only.