pub trait QuantileAggSeries {
// Required methods
fn median_reduce(&self) -> Scalar;
fn quantile_reduce(
&self,
_quantile: f64,
_method: QuantileMethod,
) -> PolarsResult<Scalar>;
}
Required Methods§
Sourcefn median_reduce(&self) -> Scalar
fn median_reduce(&self) -> Scalar
Get the median of the ChunkedArray
as a new Series
of length 1.
Sourcefn quantile_reduce(
&self,
_quantile: f64,
_method: QuantileMethod,
) -> PolarsResult<Scalar>
fn quantile_reduce( &self, _quantile: f64, _method: QuantileMethod, ) -> PolarsResult<Scalar>
Get the quantile of the ChunkedArray
as a new Series
of length 1.