Struct polars_core::datatypes::Float64Type
source · [−]pub struct Float64Type {}
Trait Implementations
sourceimpl ChunkSort<Float64Type> for Float64Chunked
impl ChunkSort<Float64Type> for Float64Chunked
sourcefn argsort_multiple(&self, other: &[Series], reverse: &[bool]) -> Result<IdxCa>
fn argsort_multiple(&self, other: &[Series], reverse: &[bool]) -> Result<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
sourcefn sort(&self, reverse: bool) -> Float64Chunked
fn sort(&self, reverse: bool) -> Float64Chunked
Returned a sorted ChunkedArray
.
sourcefn argsort(&self, options: SortOptions) -> IdxCa
fn argsort(&self, options: SortOptions) -> IdxCa
Retrieve the indexes needed to sort this array.
sourceimpl ChunkUnique<Float64Type> for Float64Chunked
impl ChunkUnique<Float64Type> for Float64Chunked
sourcefn unique(&self) -> Result<ChunkedArray<Float64Type>>
fn unique(&self) -> Result<ChunkedArray<Float64Type>>
Get unique values of a ChunkedArray
sourcefn arg_unique(&self) -> Result<IdxCa>
fn arg_unique(&self) -> Result<IdxCa>
Get first index of the unique values in a ChunkedArray
.
This Vec is sorted. Read more
sourcefn is_unique(&self) -> Result<BooleanChunked>
fn is_unique(&self) -> Result<BooleanChunked>
Get a mask of all the unique values.
sourcefn is_duplicated(&self) -> Result<BooleanChunked>
fn is_duplicated(&self) -> Result<BooleanChunked>
Get a mask of all the duplicated values.
sourcefn mode(&self) -> Result<ChunkedArray<T>>
fn mode(&self) -> Result<ChunkedArray<T>>
The most occurring value(s). Can return multiple Values
sourceimpl PolarsDataType for Float64Type
impl PolarsDataType for Float64Type
sourceimpl PolarsNumericType for Float64Type
impl PolarsNumericType for Float64Type
sourceimpl ToDummies<Float64Type> for Float64Chunked
impl ToDummies<Float64Type> for Float64Chunked
fn to_dummies(&self) -> Result<DataFrame>
impl PolarsFloatType for Float64Type
Auto Trait Implementations
impl RefUnwindSafe for Float64Type
impl Send for Float64Type
impl Sync for Float64Type
impl Unpin for Float64Type
impl UnwindSafe for Float64Type
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more