pub type Float32Chunked = ChunkedArray<Float32Type>;Aliased Type§
pub struct Float32Chunked { /* private fields */ }Implementations§
Trait Implementations§
Source§impl ChunkQuantile<f32> for Float32Chunked
impl ChunkQuantile<f32> for Float32Chunked
Source§fn quantile(
&self,
quantile: f64,
method: QuantileMethod,
) -> PolarsResult<Option<f32>>
fn quantile( &self, quantile: f64, method: QuantileMethod, ) -> PolarsResult<Option<f32>>
Aggregate a given quantile of the ChunkedArray.
Returns
None if the array is empty or only contains null values.Source§fn quantiles(
&self,
quantiles: &[f64],
method: QuantileMethod,
) -> PolarsResult<Vec<Option<f32>>>
fn quantiles( &self, quantiles: &[f64], method: QuantileMethod, ) -> PolarsResult<Vec<Option<f32>>>
Aggregate a given set of quantiles of the ChunkedArray.
Returns
None if the array is empty or only contains null values.Source§impl QuantileAggSeries for Float32Chunked
impl QuantileAggSeries for Float32Chunked
Source§fn 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.Source§fn quantiles_reduce(
&self,
quantiles: &[f64],
method: QuantileMethod,
) -> PolarsResult<Scalar>
fn quantiles_reduce( &self, quantiles: &[f64], method: QuantileMethod, ) -> PolarsResult<Scalar>
Get the quantiles of the
ChunkedArray as a new Series of same length as quantilesSource§fn median_reduce(&self) -> Scalar
fn median_reduce(&self) -> Scalar
Get the median of the
ChunkedArray as a new Series of length 1.Source§impl VarAggSeries for Float32Chunked
impl VarAggSeries for Float32Chunked
Source§fn var_reduce(&self, ddof: u8) -> Scalar
fn var_reduce(&self, ddof: u8) -> Scalar
Get the variance of the
ChunkedArray as a new Series of length 1.Source§fn std_reduce(&self, ddof: u8) -> Scalar
fn std_reduce(&self, ddof: u8) -> Scalar
Get the standard deviation of the
ChunkedArray as a new Series of length 1.Source§impl VecHash for Float32Chunked
impl VecHash for Float32Chunked
Source§fn vec_hash(
&self,
random_state: PlSeedableRandomStateQuality,
buf: &mut Vec<u64>,
) -> PolarsResult<()>
fn vec_hash( &self, random_state: PlSeedableRandomStateQuality, buf: &mut Vec<u64>, ) -> PolarsResult<()>
Compute the hash for all values in the array.