Type Definition polars_core::datatypes::Float64Chunked
source · pub type Float64Chunked = ChunkedArray<Float64Type>;
Trait Implementations§
source§impl ChunkQuantile<f64> for Float64Chunked
impl ChunkQuantile<f64> for Float64Chunked
source§fn quantile(
&self,
quantile: f64,
interpol: QuantileInterpolOptions
) -> PolarsResult<Option<f64>>
fn quantile(
&self,
quantile: f64,
interpol: QuantileInterpolOptions
) -> PolarsResult<Option<f64>>
Aggregate a given quantile of the ChunkedArray.
Returns
None
if the array is empty or only contains null values.source§impl ChunkSort<Float64Type> for Float64Chunked
impl ChunkSort<Float64Type> for Float64Chunked
source§fn argsort_multiple(
&self,
other: &[Series],
reverse: &[bool]
) -> PolarsResult<IdxCa>
fn argsort_multiple(
&self,
other: &[Series],
reverse: &[bool]
) -> PolarsResult<IdxCa>
Panics
This function is very opinionated.
We assume that all numeric Series
are of the same type, if not it will panic
fn sort_with(&self, options: SortOptions) -> Float64Chunked
source§fn sort(&self, reverse: bool) -> Float64Chunked
fn sort(&self, reverse: bool) -> Float64Chunked
Returned a sorted
ChunkedArray
.source§fn argsort(&self, options: SortOptions) -> IdxCa
fn argsort(&self, options: SortOptions) -> IdxCa
Retrieve the indexes needed to sort this array.
source§impl ChunkUnique<Float64Type> for Float64Chunked
impl ChunkUnique<Float64Type> for Float64Chunked
source§fn unique(&self) -> PolarsResult<ChunkedArray<Float64Type>>
fn unique(&self) -> PolarsResult<ChunkedArray<Float64Type>>
Get unique values of a ChunkedArray
source§fn arg_unique(&self) -> PolarsResult<IdxCa>
fn arg_unique(&self) -> PolarsResult<IdxCa>
Get first index of the unique values in a
ChunkedArray
.
This Vec is sorted.source§fn is_unique(&self) -> PolarsResult<BooleanChunked>
fn is_unique(&self) -> PolarsResult<BooleanChunked>
Get a mask of all the unique values.
source§fn is_duplicated(&self) -> PolarsResult<BooleanChunked>
fn is_duplicated(&self) -> PolarsResult<BooleanChunked>
Get a mask of all the duplicated values.
source§fn n_unique(&self) -> PolarsResult<usize>
fn n_unique(&self) -> PolarsResult<usize>
Number of unique values in the
ChunkedArray
source§fn mode(&self) -> PolarsResult<ChunkedArray<T>>
fn mode(&self) -> PolarsResult<ChunkedArray<T>>
Available on crate feature
mode
only.The most occurring value(s). Can return multiple Values
source§impl ChunkVar<f64> for Float64Chunked
impl ChunkVar<f64> for Float64Chunked
source§impl NumOpsDispatchChecked for Float64Chunked
Available on crate feature checked_arithmetic
only.
impl NumOpsDispatchChecked for Float64Chunked
Available on crate feature
checked_arithmetic
only.source§fn checked_div(&self, rhs: &Series) -> PolarsResult<Series>
fn checked_div(&self, rhs: &Series) -> PolarsResult<Series>
Checked integer division. Computes self / rhs, returning None if rhs == 0 or the division results in overflow.
fn checked_div_num<T: ToPrimitive>(&self, _rhs: T) -> PolarsResult<Series>
source§impl QuantileAggSeries for Float64Chunked
impl QuantileAggSeries for Float64Chunked
source§fn quantile_as_series(
&self,
quantile: f64,
interpol: QuantileInterpolOptions
) -> PolarsResult<Series>
fn quantile_as_series(
&self,
quantile: f64,
interpol: QuantileInterpolOptions
) -> PolarsResult<Series>
Get the quantile of the ChunkedArray as a new Series of length 1.
source§fn median_as_series(&self) -> Series
fn median_as_series(&self) -> Series
Get the median of the ChunkedArray as a new Series of length 1.
source§impl VarAggSeries for Float64Chunked
impl VarAggSeries for Float64Chunked
source§fn var_as_series(&self, ddof: u8) -> Series
fn var_as_series(&self, ddof: u8) -> Series
Get the variance of the ChunkedArray as a new Series of length 1.
source§fn std_as_series(&self, ddof: u8) -> Series
fn std_as_series(&self, ddof: u8) -> Series
Get the standard deviation of the ChunkedArray as a new Series of length 1.
source§impl VecHash for Float64Chunked
impl VecHash for Float64Chunked
source§fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64>)
fn vec_hash(&self, random_state: RandomState, buf: &mut Vec<u64>)
Compute the hash for all values in the array. Read more