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§
Sourcefn median(&self) -> Option<T>
fn median(&self) -> Option<T>
Returns the mean value in the array.
Returns None
if the array is empty or only contains null values.
Sourcefn quantile(
&self,
_quantile: f64,
_method: QuantileMethod,
) -> PolarsResult<Option<T>>
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.