pub type Float32Chunked = ChunkedArray<Float32Type>;
Aliased Type§
struct Float32Chunked { /* private fields */ }
Implementations§
Source§impl Float32Chunked
Used to save compilation paths. Use carefully. Although this is safe,
if misused it can lead to incorrect results.
impl Float32Chunked
Used to save compilation paths. Use carefully. Although this is safe, if misused it can lead to incorrect results.
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§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 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: PlRandomState,
buf: &mut Vec<u64>,
) -> PolarsResult<()>
fn vec_hash( &self, random_state: PlRandomState, buf: &mut Vec<u64>, ) -> PolarsResult<()>
Compute the hash for all values in the array.