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

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