polars_core::chunked_array::ops

Trait ChunkQuantile

Source
pub trait ChunkQuantile<T> {
    // Provided methods
    fn median(&self) -> Option<T> { ... }
    fn quantile(
        &self,
        _quantile: f64,
        _method: QuantileMethod,
    ) -> PolarsResult<Option<T>> { ... }
}
Expand description

Quantile and median aggregation.

Provided Methods§

Source

fn median(&self) -> Option<T>

Returns the mean value in the array. Returns None if the array is empty or only contains null values.

Source

fn quantile( &self, _quantile: f64, _method: QuantileMethod, ) -> PolarsResult<Option<T>>

Aggregate a given quantile of the ChunkedArray. Returns None if the array is empty or only contains null values.

Implementors§