pub trait QuantileAggSeries {
    fn median_as_series(&self) -> Series;
    fn quantile_as_series(
        &self,
        _quantile: f64,
        _interpol: QuantileInterpolOptions
    ) -> Result<Series, PolarsError>; }

Required Methods

Get the median of the ChunkedArray as a new Series of length 1.

Get the quantile of the ChunkedArray as a new Series of length 1.

Implementors