Struct polars_core::prelude::CategoricalChunked
source · pub struct CategoricalChunked { /* private fields */ }Available on crate feature
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
) -> CategoricalChunked
pub unsafe fn from_global_indices_unchecked( cats: UInt32Chunked ) -> CategoricalChunked
Create a CategoricalChunked from a categorical indices. The indices will
probe the global string cache.
Safety
This does not do any bound checks
source§impl CategoricalChunked
impl CategoricalChunked
pub fn append(&mut self, other: &Self) -> PolarsResult<()>
source§impl CategoricalChunked
impl CategoricalChunked
pub fn full_null(name: &str, length: usize) -> CategoricalChunked
source§impl CategoricalChunked
impl CategoricalChunked
pub fn unique(&self) -> PolarsResult<Self>
Available on crate feature
algorithm_group_by only.pub fn n_unique(&self) -> PolarsResult<usize>
Available on crate feature
algorithm_group_by only.pub fn value_counts(&self) -> PolarsResult<DataFrame>
Available on crate feature
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) -> &str
sourcepub fn physical(&self) -> &UInt32Chunked
pub fn physical(&self) -> &UInt32Chunked
Get a reference to the physical array (the categories).
pub fn set_lexical_ordering(&mut self, toggle: bool)
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_rev_map_unchecked(
idx: UInt32Chunked,
rev_map: Arc<RevMapping>
) -> Self
pub unsafe fn from_cats_and_rev_map_unchecked( idx: UInt32Chunked, rev_map: Arc<RevMapping> ) -> 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 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 Clone for CategoricalChunked
impl Clone for CategoricalChunked
source§fn clone(&self) -> CategoricalChunked
fn clone(&self) -> CategoricalChunked
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl From<&CategoricalChunked> for DictionaryArray<i64>
impl From<&CategoricalChunked> for DictionaryArray<i64>
source§fn from(ca: &CategoricalChunked) -> Self
fn from(ca: &CategoricalChunked) -> Self
Converts to this type from the input type.
source§impl From<&CategoricalChunked> for DictionaryArray<u32>
impl From<&CategoricalChunked> for DictionaryArray<u32>
source§fn from(ca: &CategoricalChunked) -> Self
fn from(ca: &CategoricalChunked) -> Self
Converts to this type from the input type.
source§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
Get data type of
ChunkedArray.source§fn get_any_value(&self, i: usize) -> PolarsResult<AnyValue<'_>>
fn get_any_value(&self, i: usize) -> PolarsResult<AnyValue<'_>>
Gets
AnyValue from LogicalTypefn cast(&self, dtype: &DataType) -> PolarsResult<Series>
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more