pub struct CategoricalChunked { /* private fields */ }
dtype-categorical
only.Implementations§
Source§impl CategoricalChunked
impl CategoricalChunked
pub fn sort_with(&self, options: SortOptions) -> CategoricalChunked
Sourcepub fn sort(&self, descending: bool) -> CategoricalChunked
pub fn sort(&self, descending: bool) -> CategoricalChunked
Returned a sorted ChunkedArray
.
Sourcepub fn arg_sort(&self, options: SortOptions) -> IdxCa
pub fn arg_sort(&self, options: SortOptions) -> IdxCa
Retrieve the indexes needed to sort this array.
Source§impl CategoricalChunked
impl CategoricalChunked
Sourcepub unsafe fn from_global_indices_unchecked(
cats: UInt32Chunked,
ordering: CategoricalOrdering,
) -> CategoricalChunked
pub unsafe fn from_global_indices_unchecked( cats: UInt32Chunked, ordering: CategoricalOrdering, ) -> CategoricalChunked
Create a CategoricalChunked
from a categorical indices. The indices will
probe the global string cache.
§Safety
This does not do any bound checks
Sourcepub fn from_string_to_enum(
values: &StringChunked,
categories: &Utf8ViewArray,
ordering: CategoricalOrdering,
) -> PolarsResult<CategoricalChunked>
pub fn from_string_to_enum( values: &StringChunked, categories: &Utf8ViewArray, ordering: CategoricalOrdering, ) -> PolarsResult<CategoricalChunked>
Create a CategoricalChunked
from a fixed list of categories and a List of strings.
This will error if a string is not in the fixed list of categories
Source§impl CategoricalChunked
impl CategoricalChunked
pub fn to_arrow(&self, compat_level: CompatLevel, as_i64: bool) -> ArrayRef
Source§impl CategoricalChunked
impl CategoricalChunked
pub fn append(&mut self, other: &Self) -> PolarsResult<()>
Source§impl CategoricalChunked
impl CategoricalChunked
pub fn full_null( name: PlSmallStr, is_enum: bool, length: usize, ordering: CategoricalOrdering, ) -> CategoricalChunked
Source§impl CategoricalChunked
impl CategoricalChunked
pub fn unique(&self) -> PolarsResult<Self>
algorithm_group_by
only.pub fn n_unique(&self) -> PolarsResult<usize>
algorithm_group_by
only.pub fn value_counts(&self) -> PolarsResult<DataFrame>
algorithm_group_by
only.Source§impl CategoricalChunked
impl CategoricalChunked
pub fn is_empty(&self) -> bool
pub fn len(&self) -> usize
pub fn null_count(&self) -> usize
pub fn name(&self) -> &PlSmallStr
Sourcepub fn physical(&self) -> &UInt32Chunked
pub fn physical(&self) -> &UInt32Chunked
Get a reference to the physical array (the categories).
pub fn is_enum(&self) -> bool
pub fn to_global(&self) -> PolarsResult<Self>
pub fn to_enum(&self, categories: &Utf8ViewArray, hash: u128) -> Self
Sourcepub fn uses_lexical_ordering(&self) -> bool
pub fn uses_lexical_ordering(&self) -> bool
Return whether or not the CategoricalChunked
uses the lexical order
of the string values when sorting.
Sourcepub unsafe fn from_cats_and_dtype_unchecked(
idx: UInt32Chunked,
dtype: DataType,
) -> Self
pub unsafe fn from_cats_and_dtype_unchecked( idx: UInt32Chunked, dtype: DataType, ) -> Self
Create a CategoricalChunked
from a physical array and dtype.
§Safety
It’s not checked that the indices are in-bounds or that the dtype is correct.
Sourcepub unsafe fn from_cats_and_rev_map_unchecked(
idx: UInt32Chunked,
rev_map: Arc<RevMapping>,
is_enum: bool,
ordering: CategoricalOrdering,
) -> Self
pub unsafe fn from_cats_and_rev_map_unchecked( idx: UInt32Chunked, rev_map: Arc<RevMapping>, is_enum: bool, ordering: CategoricalOrdering, ) -> Self
Create a CategoricalChunked
from an array of idx
and an existing RevMapping
: rev_map
.
§Safety
Invariant in v < rev_map.len() for v in idx
must hold.
Sourcepub fn _can_fast_unique(&self) -> bool
pub fn _can_fast_unique(&self) -> bool
True if all categories are represented in this array. When this is the case, the unique values of the array are the categories.
pub fn _with_fast_unique(self, toggle: bool) -> Self
Sourcepub fn get_rev_map(&self) -> &Arc<RevMapping>
pub fn get_rev_map(&self) -> &Arc<RevMapping>
Get a reference to the mapping of categorical types to the string values.
Trait Implementations§
Source§impl ChunkAggSeries for CategoricalChunked
impl ChunkAggSeries for CategoricalChunked
Source§fn min_reduce(&self) -> Scalar
fn min_reduce(&self) -> Scalar
ChunkedArray
as a new Series
of length 1.Source§fn max_reduce(&self) -> Scalar
fn max_reduce(&self) -> Scalar
ChunkedArray
as a new Series
of length 1.Source§fn sum_reduce(&self) -> Scalar
fn sum_reduce(&self) -> Scalar
ChunkedArray
as a new Series
of length 1.Source§fn prod_reduce(&self) -> Scalar
fn prod_reduce(&self) -> Scalar
ChunkedArray
as a new Series
of length 1.Source§impl ChunkCompareEq<&CategoricalChunked> for CategoricalChunked
impl ChunkCompareEq<&CategoricalChunked> for CategoricalChunked
type Item = Result<ChunkedArray<BooleanType>, PolarsError>
Source§fn equal(&self, rhs: &CategoricalChunked) -> Self::Item
fn equal(&self, rhs: &CategoricalChunked) -> Self::Item
Source§fn equal_missing(&self, rhs: &CategoricalChunked) -> Self::Item
fn equal_missing(&self, rhs: &CategoricalChunked) -> Self::Item
None == None
.Source§fn not_equal(&self, rhs: &CategoricalChunked) -> Self::Item
fn not_equal(&self, rhs: &CategoricalChunked) -> Self::Item
Source§fn not_equal_missing(&self, rhs: &CategoricalChunked) -> Self::Item
fn not_equal_missing(&self, rhs: &CategoricalChunked) -> Self::Item
None == None
.Source§impl ChunkCompareEq<&ChunkedArray<StringType>> for CategoricalChunked
impl ChunkCompareEq<&ChunkedArray<StringType>> for CategoricalChunked
type Item = Result<ChunkedArray<BooleanType>, PolarsError>
Source§fn equal(&self, rhs: &StringChunked) -> Self::Item
fn equal(&self, rhs: &StringChunked) -> Self::Item
Source§fn equal_missing(&self, rhs: &StringChunked) -> Self::Item
fn equal_missing(&self, rhs: &StringChunked) -> Self::Item
None == None
.Source§fn not_equal(&self, rhs: &StringChunked) -> Self::Item
fn not_equal(&self, rhs: &StringChunked) -> Self::Item
Source§fn not_equal_missing(&self, rhs: &StringChunked) -> Self::Item
fn not_equal_missing(&self, rhs: &StringChunked) -> Self::Item
None == None
.Source§impl ChunkCompareEq<&str> for CategoricalChunked
impl ChunkCompareEq<&str> for CategoricalChunked
type Item = Result<ChunkedArray<BooleanType>, PolarsError>
Source§fn equal_missing(&self, rhs: &str) -> Self::Item
fn equal_missing(&self, rhs: &str) -> Self::Item
None == None
.Source§fn not_equal_missing(&self, rhs: &str) -> Self::Item
fn not_equal_missing(&self, rhs: &str) -> Self::Item
None == None
.Source§impl ChunkCompareIneq<&CategoricalChunked> for CategoricalChunked
impl ChunkCompareIneq<&CategoricalChunked> for CategoricalChunked
type Item = Result<ChunkedArray<BooleanType>, PolarsError>
Source§fn gt(&self, rhs: &CategoricalChunked) -> Self::Item
fn gt(&self, rhs: &CategoricalChunked) -> Self::Item
Source§fn gt_eq(&self, rhs: &CategoricalChunked) -> Self::Item
fn gt_eq(&self, rhs: &CategoricalChunked) -> Self::Item
Source§fn lt(&self, rhs: &CategoricalChunked) -> Self::Item
fn lt(&self, rhs: &CategoricalChunked) -> Self::Item
Source§fn lt_eq(&self, rhs: &CategoricalChunked) -> Self::Item
fn lt_eq(&self, rhs: &CategoricalChunked) -> Self::Item
Source§impl ChunkCompareIneq<&ChunkedArray<StringType>> for CategoricalChunked
impl ChunkCompareIneq<&ChunkedArray<StringType>> for CategoricalChunked
type Item = Result<ChunkedArray<BooleanType>, PolarsError>
Source§fn gt(&self, rhs: &StringChunked) -> Self::Item
fn gt(&self, rhs: &StringChunked) -> Self::Item
Source§fn gt_eq(&self, rhs: &StringChunked) -> Self::Item
fn gt_eq(&self, rhs: &StringChunked) -> Self::Item
Source§fn lt(&self, rhs: &StringChunked) -> Self::Item
fn lt(&self, rhs: &StringChunked) -> Self::Item
Source§fn lt_eq(&self, rhs: &StringChunked) -> Self::Item
fn lt_eq(&self, rhs: &StringChunked) -> Self::Item
Source§impl ChunkCompareIneq<&str> for CategoricalChunked
impl ChunkCompareIneq<&str> for CategoricalChunked
type Item = Result<ChunkedArray<BooleanType>, PolarsError>
Source§impl Clone for CategoricalChunked
impl Clone for CategoricalChunked
Source§fn clone(&self) -> CategoricalChunked
fn clone(&self) -> CategoricalChunked
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl IntoSeries for CategoricalChunked
impl IntoSeries for CategoricalChunked
Source§impl LogicalType for CategoricalChunked
impl LogicalType for CategoricalChunked
Source§fn dtype(&self) -> &DataType
fn dtype(&self) -> &DataType
ChunkedArray
.Source§fn get_any_value(&self, i: usize) -> PolarsResult<AnyValue<'_>>
fn get_any_value(&self, i: usize) -> PolarsResult<AnyValue<'_>>
AnyValue
from LogicalType
fn cast_with_options( &self, dtype: &DataType, options: CastOptions, ) -> PolarsResult<Series>
fn cast(&self, dtype: &DataType) -> PolarsResult<Series>
Auto Trait Implementations§
impl Freeze for CategoricalChunked
impl !RefUnwindSafe for CategoricalChunked
impl Send for CategoricalChunked
impl Sync for CategoricalChunked
impl Unpin for CategoricalChunked
impl !UnwindSafe for CategoricalChunked
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)Source§impl<T> IntoColumn for Twhere
T: IntoSeries,
impl<T> IntoColumn for Twhere
T: IntoSeries,
fn into_column(self) -> Column
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more