pub trait ChunkQuantile<T> {
    fn median(&self) -> Option<T> { ... }
fn quantile(
        &self,
        _quantile: f64,
        _interpol: QuantileInterpolOptions
    ) -> Result<Option<T>, PolarsError> { ... } }
This is supported on crate feature object only.
Expand description

Quantile and median aggregation

Provided methods

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

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

Implementors