Struct polars_core::datatypes::Float32Type
source · [−]pub struct Float32Type {}
Trait Implementations
sourceimpl ChunkSort<Float32Type> for Float32Chunked
impl ChunkSort<Float32Type> for Float32Chunked
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) -> Float32Chunked
sourcefn sort(&self, reverse: bool) -> Float32Chunked
fn sort(&self, reverse: bool) -> Float32Chunked
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<Float32Type> for Float32Chunked
impl ChunkUnique<Float32Type> for Float32Chunked
sourcefn unique(&self) -> Result<ChunkedArray<Float32Type>>
fn unique(&self) -> Result<ChunkedArray<Float32Type>>
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 Float32Type
impl PolarsDataType for Float32Type
sourceimpl PolarsNumericType for Float32Type
impl PolarsNumericType for Float32Type
sourceimpl ToDummies<Float32Type> for Float32Chunked
impl ToDummies<Float32Type> for Float32Chunked
fn to_dummies(&self) -> Result<DataFrame>
impl PolarsFloatType for Float32Type
Auto Trait Implementations
impl RefUnwindSafe for Float32Type
impl Send for Float32Type
impl Sync for Float32Type
impl Unpin for Float32Type
impl UnwindSafe for Float32Type
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