pub type StringChunked = ChunkedArray<StringType>;
Aliased Type§
struct StringChunked { /* private fields */ }
Implementations
Source§impl ChunkedArray<StringType>
impl ChunkedArray<StringType>
pub fn as_binary(&self) -> ChunkedArray<BinaryType>
Source§impl ChunkedArray<StringType>
impl ChunkedArray<StringType>
pub fn apply_mut<'a, F>(&'a self, f: F) -> ChunkedArray<StringType>
Source§impl ChunkedArray<StringType>
impl ChunkedArray<StringType>
Sourcepub unsafe fn apply_views<F>(&self, update_view: F) -> ChunkedArray<StringType>
pub unsafe fn apply_views<F>(&self, update_view: F) -> ChunkedArray<StringType>
§Safety
Update the views. All invariants of the views apply.
Source§impl ChunkedArray<StringType>
impl ChunkedArray<StringType>
Sourcepub fn to_decimal(&self, infer_length: usize) -> Result<Series, PolarsError>
pub fn to_decimal(&self, infer_length: usize) -> Result<Series, PolarsError>
Convert an StringChunked
to a Series
of DataType::Decimal
.
Scale needed for the decimal type are inferred. Parsing is not strict.
Scale inference assumes that all tested strings are well-formed numbers,
and may produce unexpected results for scale if this is not the case.
If the decimal precision
and scale
are already known, consider
using the cast
method.
Source§impl<T> ChunkedArray<T>where
T: PolarsDataType,
<<T as PolarsDataType>::Array as StaticArray>::ValueT<'a>: for<'a> AsRef<[u8]>,
impl<T> ChunkedArray<T>where
T: PolarsDataType,
<<T as PolarsDataType>::Array as StaticArray>::ValueT<'a>: for<'a> AsRef<[u8]>,
Source§impl<T> ChunkedArray<T>
impl<T> ChunkedArray<T>
pub fn to_canonical(&self) -> ChunkedArray<T>
Source§impl<T> ChunkedArray<T>
impl<T> ChunkedArray<T>
pub fn is_nan(&self) -> ChunkedArray<BooleanType>
pub fn is_not_nan(&self) -> ChunkedArray<BooleanType>
pub fn is_finite(&self) -> ChunkedArray<BooleanType>
pub fn is_infinite(&self) -> ChunkedArray<BooleanType>
Sourcepub fn none_to_nan(&self) -> ChunkedArray<T>
pub fn none_to_nan(&self) -> ChunkedArray<T>
Convert missing values to NaN
values.
Source§impl<T> ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkedArray<T>where
T: PolarsNumericType,
Sourcepub fn from_vec(
name: PlSmallStr,
v: Vec<<T as PolarsNumericType>::Native>,
) -> ChunkedArray<T>
pub fn from_vec( name: PlSmallStr, v: Vec<<T as PolarsNumericType>::Native>, ) -> ChunkedArray<T>
Create a new ChunkedArray by taking ownership of the Vec. This operation is zero copy.
Sourcepub fn from_vec_validity(
name: PlSmallStr,
values: Vec<<T as PolarsNumericType>::Native>,
buffer: Option<Bitmap>,
) -> ChunkedArray<T>
pub fn from_vec_validity( name: PlSmallStr, values: Vec<<T as PolarsNumericType>::Native>, buffer: Option<Bitmap>, ) -> ChunkedArray<T>
Create a new ChunkedArray from a Vec and a validity mask.
Sourcepub unsafe fn mmap_slice(
name: PlSmallStr,
values: &[<T as PolarsNumericType>::Native],
) -> ChunkedArray<T>
pub unsafe fn mmap_slice( name: PlSmallStr, values: &[<T as PolarsNumericType>::Native], ) -> ChunkedArray<T>
Create a temporary ChunkedArray
from a slice.
§Safety
The lifetime will be bound to the lifetime of the slice. This will not be checked by the borrowchecker.
Source§impl<T> ChunkedArray<T>where
T: PolarsDataType,
impl<T> ChunkedArray<T>where
T: PolarsDataType,
pub fn with_chunk<A>(name: PlSmallStr, arr: A) -> ChunkedArray<T>where
A: Array,
T: PolarsDataType<Array = A>,
pub fn with_chunk_like<A>(ca: &ChunkedArray<T>, arr: A) -> ChunkedArray<T>where
A: Array,
T: PolarsDataType<Array = A>,
pub fn from_chunk_iter<I>(name: PlSmallStr, iter: I) -> ChunkedArray<T>where
I: IntoIterator,
T: PolarsDataType<Array = <I as IntoIterator>::Item>,
<I as IntoIterator>::Item: Array,
pub fn from_chunk_iter_like<I>(ca: &ChunkedArray<T>, iter: I) -> ChunkedArray<T>where
I: IntoIterator,
T: PolarsDataType<Array = <I as IntoIterator>::Item>,
<I as IntoIterator>::Item: Array,
pub fn try_from_chunk_iter<I, A, E>( name: PlSmallStr, iter: I, ) -> Result<ChunkedArray<T>, E>
Sourcepub unsafe fn from_chunks(
name: PlSmallStr,
chunks: Vec<Box<dyn Array>>,
) -> ChunkedArray<T>
pub unsafe fn from_chunks( name: PlSmallStr, chunks: Vec<Box<dyn Array>>, ) -> ChunkedArray<T>
Create a new ChunkedArray
from existing chunks.
§Safety
The Arrow datatype of all chunks must match the PolarsDataType
T
.
Sourcepub unsafe fn with_chunks(&self, chunks: Vec<Box<dyn Array>>) -> ChunkedArray<T>
pub unsafe fn with_chunks(&self, chunks: Vec<Box<dyn Array>>) -> ChunkedArray<T>
§Safety
The Arrow datatype of all chunks must match the PolarsDataType
T
.
Sourcepub unsafe fn from_chunks_and_dtype(
name: PlSmallStr,
chunks: Vec<Box<dyn Array>>,
dtype: DataType,
) -> ChunkedArray<T>
pub unsafe fn from_chunks_and_dtype( name: PlSmallStr, chunks: Vec<Box<dyn Array>>, dtype: DataType, ) -> ChunkedArray<T>
Create a new ChunkedArray
from existing chunks.
§Safety
The Arrow datatype of all chunks must match the PolarsDataType
T
.
pub fn full_null_like(ca: &ChunkedArray<T>, length: usize) -> ChunkedArray<T>
Source§impl<T> ChunkedArray<T>where
T: PolarsDataType,
impl<T> ChunkedArray<T>where
T: PolarsDataType,
pub fn iter(&self) -> impl PolarsIterator
Source§impl<T> ChunkedArray<T>where
T: PolarsDataType,
impl<T> ChunkedArray<T>where
T: PolarsDataType,
Sourcepub fn unpack_series_matching_type<'a>(
&self,
series: &'a Series,
) -> Result<&'a ChunkedArray<T>, PolarsError>
pub fn unpack_series_matching_type<'a>( &self, series: &'a Series, ) -> Result<&'a ChunkedArray<T>, PolarsError>
Series to ChunkedArray<T>
Sourcepub unsafe fn new_with_dims(
field: Arc<Field>,
chunks: Vec<Box<dyn Array>>,
length: usize,
null_count: usize,
) -> ChunkedArray<T>
pub unsafe fn new_with_dims( field: Arc<Field>, chunks: Vec<Box<dyn Array>>, length: usize, null_count: usize, ) -> ChunkedArray<T>
Create a new ChunkedArray
and explicitly set its length
and null_count
.
§Safety
The length and null_count must be correct.
pub fn unset_fast_explode_list(&mut self)
pub fn set_fast_explode_list(&mut self, value: bool)
pub fn get_fast_explode_list(&self) -> bool
pub fn get_flags(&self) -> StatisticsFlags
pub fn is_sorted_flag(&self) -> IsSorted
pub fn retain_flags_from<U>(
&mut self,
from: &ChunkedArray<U>,
retain_flags: StatisticsFlags,
)where
U: PolarsDataType,
Sourcepub fn set_sorted_flag(&mut self, sorted: IsSorted)
pub fn set_sorted_flag(&mut self, sorted: IsSorted)
Set the ‘sorted’ bit meta info.
Sourcepub fn with_sorted_flag(&self, sorted: IsSorted) -> ChunkedArray<T>
pub fn with_sorted_flag(&self, sorted: IsSorted) -> ChunkedArray<T>
Set the ‘sorted’ bit meta info.
Sourcepub fn first_non_null(&self) -> Option<usize>
pub fn first_non_null(&self) -> Option<usize>
Get the index of the first non null value in this ChunkedArray
.
Sourcepub fn last_non_null(&self) -> Option<usize>
pub fn last_non_null(&self) -> Option<usize>
Get the index of the last non null value in this ChunkedArray
.
pub fn drop_nulls(&self) -> ChunkedArray<T>
Sourcepub fn iter_validities(
&self,
) -> Map<Iter<'_, Box<dyn Array>>, fn(_: &Box<dyn Array>) -> Option<&Bitmap>> ⓘ
pub fn iter_validities( &self, ) -> Map<Iter<'_, Box<dyn Array>>, fn(_: &Box<dyn Array>) -> Option<&Bitmap>> ⓘ
Get the buffer of bits representing null values
Sourcepub fn has_nulls(&self) -> bool
pub fn has_nulls(&self) -> bool
Return if any the chunks in this ChunkedArray
have nulls.
Sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrink the capacity of this array to fit its length.
pub fn clear(&self) -> ChunkedArray<T>
Sourcepub fn chunk_lengths(
&self,
) -> Map<Iter<'_, Box<dyn Array>>, fn(_: &Box<dyn Array>) -> usize> ⓘ
pub fn chunk_lengths( &self, ) -> Map<Iter<'_, Box<dyn Array>>, fn(_: &Box<dyn Array>) -> usize> ⓘ
Returns an iterator over the lengths of the chunks of the array.
Sourcepub unsafe fn chunks_mut(&mut self) -> &mut Vec<Box<dyn Array>>
pub unsafe fn chunks_mut(&mut self) -> &mut Vec<Box<dyn Array>>
Sourcepub fn is_optimal_aligned(&self) -> bool
pub fn is_optimal_aligned(&self) -> bool
Returns true if contains a single chunk and has no null values
Sourcepub fn dtype(&self) -> &DataType
pub fn dtype(&self) -> &DataType
Get data type of ChunkedArray
.
Sourcepub fn name(&self) -> &PlSmallStr
pub fn name(&self) -> &PlSmallStr
Name of the ChunkedArray
.
Sourcepub fn rename(&mut self, name: PlSmallStr)
pub fn rename(&mut self, name: PlSmallStr)
Rename this ChunkedArray
.
Sourcepub fn with_name(self, name: PlSmallStr) -> ChunkedArray<T>
pub fn with_name(self, name: PlSmallStr) -> ChunkedArray<T>
Return this ChunkedArray
with a new name.
Source§impl<T> ChunkedArray<T>where
T: PolarsDataType,
impl<T> ChunkedArray<T>where
T: PolarsDataType,
Sourcepub fn get(&self, idx: usize) -> Option<<T as PolarsDataType>::Physical<'_>>
pub fn get(&self, idx: usize) -> Option<<T as PolarsDataType>::Physical<'_>>
Get a single value from this ChunkedArray
. If the return values is None
this
indicates a NULL value.
§Panics
This function will panic if idx
is out of bounds.
Sourcepub unsafe fn get_unchecked(
&self,
idx: usize,
) -> Option<<T as PolarsDataType>::Physical<'_>>
pub unsafe fn get_unchecked( &self, idx: usize, ) -> Option<<T as PolarsDataType>::Physical<'_>>
Get a single value from this ChunkedArray
. If the return values is None
this
indicates a NULL value.
§Safety
It is the callers responsibility that the idx < self.len()
.
Sourcepub unsafe fn value_unchecked(
&self,
idx: usize,
) -> <T as PolarsDataType>::Physical<'_>
pub unsafe fn value_unchecked( &self, idx: usize, ) -> <T as PolarsDataType>::Physical<'_>
Get a single value from this ChunkedArray
. Null values are ignored and the returned
value could be garbage if it was masked out by NULL. Note that the value always is initialized.
§Safety
It is the callers responsibility that the idx < self.len()
.
pub fn first(&self) -> Option<<T as PolarsDataType>::Physical<'_>>
pub fn last(&self) -> Option<<T as PolarsDataType>::Physical<'_>>
Source§impl<T> ChunkedArray<T>where
T: PolarsDataType,
impl<T> ChunkedArray<T>where
T: PolarsDataType,
pub fn layout(&self) -> ChunkedArrayLayout<'_, T>
Source§impl<T> ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkedArray<T>where
T: PolarsNumericType,
Sourcepub fn cont_slice(
&self,
) -> Result<&[<T as PolarsNumericType>::Native], PolarsError>
pub fn cont_slice( &self, ) -> Result<&[<T as PolarsNumericType>::Native], PolarsError>
Returns the values of the array as a contiguous slice.
Sourcepub fn data_views(&self) -> impl DoubleEndedIterator
pub fn data_views(&self) -> impl DoubleEndedIterator
Get slices of the underlying arrow data. NOTE: null values should be taken into account by the user of these slices as they are handled separately
pub fn into_no_null_iter( &self, ) -> impl Send + Sync + ExactSizeIterator + DoubleEndedIterator + TrustedLen
Source§impl<T> ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkedArray<T>where
T: PolarsNumericType,
Sourcepub fn to_ndarray(
&self,
) -> Result<ArrayBase<ViewRepr<&<T as PolarsNumericType>::Native>, Dim<[usize; 1]>>, PolarsError>
pub fn to_ndarray( &self, ) -> Result<ArrayBase<ViewRepr<&<T as PolarsNumericType>::Native>, Dim<[usize; 1]>>, PolarsError>
If data is aligned in a single chunk and has no Null values a zero copy view is returned as an ndarray
Source§impl<T> ChunkedArray<T>where
T: PolarsDataType<IsNested = FalseT, IsObject = FalseT>,
<T as PolarsDataType>::Physical<'a>: for<'a> TotalOrd,
impl<T> ChunkedArray<T>where
T: PolarsDataType<IsNested = FalseT, IsObject = FalseT>,
<T as PolarsDataType>::Physical<'a>: for<'a> TotalOrd,
Sourcepub fn append(&mut self, other: &ChunkedArray<T>) -> Result<(), PolarsError>
pub fn append(&mut self, other: &ChunkedArray<T>) -> Result<(), PolarsError>
Append in place. This is done by adding the chunks of other
to this ChunkedArray
.
See also extend
for appends to the underlying memory
Sourcepub fn append_owned(
&mut self,
other: ChunkedArray<T>,
) -> Result<(), PolarsError>
pub fn append_owned( &mut self, other: ChunkedArray<T>, ) -> Result<(), PolarsError>
Append in place. This is done by adding the chunks of other
to this ChunkedArray
.
See also extend
for appends to the underlying memory
Source§impl<T> ChunkedArray<T>where
T: PolarsDataType,
impl<T> ChunkedArray<T>where
T: PolarsDataType,
Sourcepub fn apply_nonnull_values_generic<'a, U, K, F>(
&'a self,
dtype: DataType,
op: F,
) -> ChunkedArray<U>where
U: PolarsDataType,
F: FnMut(<T as PolarsDataType>::Physical<'a>) -> K,
<U as PolarsDataType>::Array: ArrayFromIterDtype<K> + ArrayFromIterDtype<Option<K>>,
pub fn apply_nonnull_values_generic<'a, U, K, F>(
&'a self,
dtype: DataType,
op: F,
) -> ChunkedArray<U>where
U: PolarsDataType,
F: FnMut(<T as PolarsDataType>::Physical<'a>) -> K,
<U as PolarsDataType>::Array: ArrayFromIterDtype<K> + ArrayFromIterDtype<Option<K>>,
Applies a function only to the non-null elements, propagating nulls.
Sourcepub fn try_apply_nonnull_values_generic<'a, U, K, F, E>(
&'a self,
op: F,
) -> Result<ChunkedArray<U>, E>where
U: PolarsDataType,
F: FnMut(<T as PolarsDataType>::Physical<'a>) -> Result<K, E>,
<U as PolarsDataType>::Array: ArrayFromIter<K> + ArrayFromIter<Option<K>>,
pub fn try_apply_nonnull_values_generic<'a, U, K, F, E>(
&'a self,
op: F,
) -> Result<ChunkedArray<U>, E>where
U: PolarsDataType,
F: FnMut(<T as PolarsDataType>::Physical<'a>) -> Result<K, E>,
<U as PolarsDataType>::Array: ArrayFromIter<K> + ArrayFromIter<Option<K>>,
Applies a function only to the non-null elements, propagating nulls.
pub fn apply_into_string_amortized<'a, F>( &'a self, f: F, ) -> ChunkedArray<StringType>
pub fn try_apply_into_string_amortized<'a, F, E>( &'a self, f: F, ) -> Result<ChunkedArray<StringType>, E>
Source§impl<T> ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkedArray<T>where
T: PolarsNumericType,
Sourcepub fn cast_and_apply_in_place<F, S>(&self, f: F) -> ChunkedArray<S>where
F: Fn(<S as PolarsNumericType>::Native) -> <S as PolarsNumericType>::Native + Copy,
S: PolarsNumericType,
pub fn cast_and_apply_in_place<F, S>(&self, f: F) -> ChunkedArray<S>where
F: Fn(<S as PolarsNumericType>::Native) -> <S as PolarsNumericType>::Native + Copy,
S: PolarsNumericType,
Cast a numeric array to another numeric data type and apply a function in place. This saves an allocation.
Sourcepub fn apply_in_place<F>(self, f: F) -> ChunkedArray<T>
pub fn apply_in_place<F>(self, f: F) -> ChunkedArray<T>
Cast a numeric array to another numeric data type and apply a function in place. This saves an allocation.
Source§impl<T> ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkedArray<T>where
T: PolarsNumericType,
Source§impl<T> ChunkedArray<T>where
T: PolarsDataType,
impl<T> ChunkedArray<T>where
T: PolarsDataType,
Sourcepub fn null_count(&self) -> usize
pub fn null_count(&self) -> usize
Return the number of null values in the ChunkedArray.
Sourcepub unsafe fn set_null_count(&mut self, null_count: usize)
pub unsafe fn set_null_count(&mut self, null_count: usize)
Set the null count directly.
This can be useful after mutably adjusting the validity of the underlying arrays.
§Safety
The new null count must match the total null count of the underlying arrays.
Sourcepub fn rechunk(&self) -> Cow<'_, ChunkedArray<T>>
pub fn rechunk(&self) -> Cow<'_, ChunkedArray<T>>
Rechunks this ChunkedArray, returning a new Cow::Owned ChunkedArray if it was rechunked or simply a Cow::Borrowed of itself if it was already a single chunk.
Sourcepub fn rechunk_mut(&mut self)
pub fn rechunk_mut(&mut self)
Rechunks this ChunkedArray in-place.
pub fn rechunk_validity(&self) -> Option<Bitmap>
pub fn with_validities(&mut self, validities: &[Option<Bitmap>])
Sourcepub fn split_at(&self, offset: i64) -> (ChunkedArray<T>, ChunkedArray<T>)
pub fn split_at(&self, offset: i64) -> (ChunkedArray<T>, ChunkedArray<T>)
Split the array. The chunks are reallocated the underlying data slices are zero copy.
When offset is negative it will be counted from the end of the array. This method will never error, and will slice the best match when offset, or length is out of bounds
Sourcepub fn slice(&self, offset: i64, length: usize) -> ChunkedArray<T>
pub fn slice(&self, offset: i64, length: usize) -> ChunkedArray<T>
Slice the array. The chunks are reallocated the underlying data slices are zero copy.
When offset is negative it will be counted from the end of the array. This method will never error, and will slice the best match when offset, or length is out of bounds
Sourcepub fn limit(&self, num_elements: usize) -> ChunkedArray<T>where
ChunkedArray<T>: Sized,
pub fn limit(&self, num_elements: usize) -> ChunkedArray<T>where
ChunkedArray<T>: Sized,
Take a view of top n elements
Sourcepub fn head(&self, length: Option<usize>) -> ChunkedArray<T>where
ChunkedArray<T>: Sized,
pub fn head(&self, length: Option<usize>) -> ChunkedArray<T>where
ChunkedArray<T>: Sized,
Get the head of the ChunkedArray
Sourcepub fn tail(&self, length: Option<usize>) -> ChunkedArray<T>where
ChunkedArray<T>: Sized,
pub fn tail(&self, length: Option<usize>) -> ChunkedArray<T>where
ChunkedArray<T>: Sized,
Get the tail of the ChunkedArray
Sourcepub fn prune_empty_chunks(&mut self)
pub fn prune_empty_chunks(&mut self)
Remove empty chunks.
Source§impl<T> ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkedArray<T>where
T: PolarsNumericType,
Sourcepub fn extend(&mut self, other: &ChunkedArray<T>) -> Result<(), PolarsError>
pub fn extend(&mut self, other: &ChunkedArray<T>) -> Result<(), PolarsError>
Extend the memory backed by this array with the values from other
.
Different from ChunkedArray::append
which adds chunks to this ChunkedArray
extend
appends the data from other
to the underlying PrimitiveArray
and thus may cause a reallocation.
However if this does not cause a reallocation, the resulting data structure will not have any extra chunks and thus will yield faster queries.
Prefer extend
over append
when you want to do a query after a single append. For instance during
online operations where you add n
rows and rerun a query.
Prefer append
over extend
when you want to append many times before doing a query. For instance
when you read in multiple files and when to store them in a single DataFrame
.
In the latter case finish the sequence of append
operations with a rechunk
.
Source§impl<T> ChunkedArray<T>where
T: PolarsDataType,
impl<T> ChunkedArray<T>where
T: PolarsDataType,
Source§impl<T> ChunkedArray<T>where
T: PolarsDataType,
impl<T> ChunkedArray<T>where
T: PolarsDataType,
Sourcepub fn is_null(&self) -> ChunkedArray<BooleanType>
pub fn is_null(&self) -> ChunkedArray<BooleanType>
Get a mask of the null values.
Sourcepub fn is_not_null(&self) -> ChunkedArray<BooleanType>
pub fn is_not_null(&self) -> ChunkedArray<BooleanType>
Get a mask of the valid values.
Source§impl<T> ChunkedArray<T>where
ChunkedArray<T>: IntoSeries,
T: PolarsFloatType,
<T as PolarsNumericType>::Native: Float + IsFloat + SubAssign + Pow<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,
impl<T> ChunkedArray<T>where
ChunkedArray<T>: IntoSeries,
T: PolarsFloatType,
<T as PolarsNumericType>::Native: Float + IsFloat + SubAssign + Pow<<T as PolarsNumericType>::Native, Output = <T as PolarsNumericType>::Native>,
Sourcepub fn rolling_map_float<F>(
&self,
window_size: usize,
f: F,
) -> Result<ChunkedArray<T>, PolarsError>
pub fn rolling_map_float<F>( &self, window_size: usize, f: F, ) -> Result<ChunkedArray<T>, PolarsError>
Apply a rolling custom function. This is pretty slow because of dynamic dispatch.
Source§impl<T> ChunkedArray<T>
impl<T> ChunkedArray<T>
Sourcepub fn sample_n(
&self,
n: usize,
with_replacement: bool,
shuffle: bool,
seed: Option<u64>,
) -> Result<ChunkedArray<T>, PolarsError>
pub fn sample_n( &self, n: usize, with_replacement: bool, shuffle: bool, seed: Option<u64>, ) -> Result<ChunkedArray<T>, PolarsError>
Sample n datapoints from this ChunkedArray
.
Sourcepub fn sample_frac(
&self,
frac: f64,
with_replacement: bool,
shuffle: bool,
seed: Option<u64>,
) -> Result<ChunkedArray<T>, PolarsError>
pub fn sample_frac( &self, frac: f64, with_replacement: bool, shuffle: bool, seed: Option<u64>, ) -> Result<ChunkedArray<T>, PolarsError>
Sample a fraction between 0.0-1.0 of this ChunkedArray
.
Source§impl<T> ChunkedArray<T>
impl<T> ChunkedArray<T>
Sourcepub fn rand_normal(
name: PlSmallStr,
length: usize,
mean: f64,
std_dev: f64,
) -> Result<ChunkedArray<T>, PolarsError>
pub fn rand_normal( name: PlSmallStr, length: usize, mean: f64, std_dev: f64, ) -> Result<ChunkedArray<T>, PolarsError>
Create ChunkedArray
with samples from a Normal distribution.
Sourcepub fn rand_standard_normal(name: PlSmallStr, length: usize) -> ChunkedArray<T>
pub fn rand_standard_normal(name: PlSmallStr, length: usize) -> ChunkedArray<T>
Create ChunkedArray
with samples from a Standard Normal distribution.
Sourcepub fn rand_uniform(
name: PlSmallStr,
length: usize,
low: f64,
high: f64,
) -> ChunkedArray<T>
pub fn rand_uniform( name: PlSmallStr, length: usize, low: f64, high: f64, ) -> ChunkedArray<T>
Create ChunkedArray
with samples from a Uniform distribution.
Source§impl<T> ChunkedArray<T>
impl<T> ChunkedArray<T>
Source§impl<T> ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkedArray<T>where
T: PolarsNumericType,
Sourcepub fn to_vec(&self) -> Vec<Option<<T as PolarsNumericType>::Native>>
pub fn to_vec(&self) -> Vec<Option<<T as PolarsNumericType>::Native>>
Convert to a Vec
of Option<T::Native>
.
Sourcepub fn to_vec_null_aware(
&self,
) -> Either<Vec<<T as PolarsNumericType>::Native>, Vec<Option<<T as PolarsNumericType>::Native>>> ⓘ
pub fn to_vec_null_aware( &self, ) -> Either<Vec<<T as PolarsNumericType>::Native>, Vec<Option<<T as PolarsNumericType>::Native>>> ⓘ
Convert to a Vec
but don’t return Option<T::Native>
if there are no null values
Source§impl<T> ChunkedArray<T>
impl<T> ChunkedArray<T>
Sourcepub unsafe fn group_tuples_perfect(
&self,
num_groups: usize,
multithreaded: bool,
group_capacity: usize,
) -> GroupsType
pub unsafe fn group_tuples_perfect( &self, num_groups: usize, multithreaded: bool, group_capacity: usize, ) -> GroupsType
Use the indexes as perfect groups.
§Safety
This ChunkedArray must contain each value in [0..num_groups) at least once, and nothing outside this range.
Source§impl<T> ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkedArray<T>where
T: PolarsNumericType,
Sourcepub fn new_vec(
name: PlSmallStr,
v: Vec<<T as PolarsNumericType>::Native>,
) -> ChunkedArray<T>
pub fn new_vec( name: PlSmallStr, v: Vec<<T as PolarsNumericType>::Native>, ) -> ChunkedArray<T>
Specialization that prevents an allocation
prefer this over ChunkedArray::new when you have a Vec<T::Native>
and no null values.
Source§impl<T> ChunkedArray<T>
We cannot override the left hand side behaviour. So we create a trait LhsNumOps.
This allows for 1.add(&Series)
impl<T> ChunkedArray<T>
We cannot override the left hand side behaviour. So we create a trait LhsNumOps. This allows for 1.add(&Series)
Sourcepub fn lhs_sub<N>(&self, lhs: N) -> ChunkedArray<T>
pub fn lhs_sub<N>(&self, lhs: N) -> ChunkedArray<T>
Apply lhs - self
Sourcepub fn lhs_div<N>(&self, lhs: N) -> ChunkedArray<T>
pub fn lhs_div<N>(&self, lhs: N) -> ChunkedArray<T>
Apply lhs / self
Sourcepub fn lhs_rem<N>(&self, lhs: N) -> ChunkedArray<T>
pub fn lhs_rem<N>(&self, lhs: N) -> ChunkedArray<T>
Apply lhs % self
Trait Implementations
Source§impl<T, N> Add<N> for ChunkedArray<T>
impl<T, N> Add<N> for ChunkedArray<T>
Source§impl Add for ChunkedArray<StringType>
impl Add for ChunkedArray<StringType>
Source§type Output = ChunkedArray<StringType>
type Output = ChunkedArray<StringType>
+
operator.Source§fn add(
self,
rhs: ChunkedArray<StringType>,
) -> <ChunkedArray<StringType> as Add>::Output
fn add( self, rhs: ChunkedArray<StringType>, ) -> <ChunkedArray<StringType> as Add>::Output
+
operation. Read moreSource§impl<T> Add for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> Add for ChunkedArray<T>where
T: PolarsNumericType,
Source§type Output = ChunkedArray<T>
type Output = ChunkedArray<T>
+
operator.Source§fn add(self, rhs: ChunkedArray<T>) -> <ChunkedArray<T> as Add>::Output
fn add(self, rhs: ChunkedArray<T>) -> <ChunkedArray<T> as Add>::Output
+
operation. Read moreSource§impl AggList for ChunkedArray<StringType>
impl AggList for ChunkedArray<StringType>
Source§impl<T> AggList for ChunkedArray<T>
impl<T> AggList for ChunkedArray<T>
Source§impl<T> ArithmeticChunked for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ArithmeticChunked for ChunkedArray<T>where
T: PolarsNumericType,
type Scalar = <T as PolarsNumericType>::Native
type Out = ChunkedArray<T>
type TrueDivOut = ChunkedArray<<<T as PolarsNumericType>::Native as NumericNative>::TrueDivPolarsType>
fn wrapping_abs(self) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_neg(self) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_add( self, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_sub( self, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_mul( self, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_floor_div( self, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_trunc_div( self, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_mod( self, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_add_scalar( self, rhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_sub_scalar( self, rhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_sub_scalar_lhs( lhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_mul_scalar( self, rhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_floor_div_scalar( self, rhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_floor_div_scalar_lhs( lhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_trunc_div_scalar( self, rhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_trunc_div_scalar_lhs( lhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_mod_scalar( self, rhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn wrapping_mod_scalar_lhs( lhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn true_div( self, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::TrueDivOut
fn true_div_scalar( self, rhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, ) -> <ChunkedArray<T> as ArithmeticChunked>::TrueDivOut
fn true_div_scalar_lhs( lhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::TrueDivOut
fn legacy_div( self, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn legacy_div_scalar( self, rhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
fn legacy_div_scalar_lhs( lhs: <ChunkedArray<T> as ArithmeticChunked>::Scalar, rhs: ChunkedArray<T>, ) -> <ChunkedArray<T> as ArithmeticChunked>::Out
Source§impl<T> AsRef<ChunkedArray<T>> for ChunkedArray<T>where
T: PolarsDataType,
impl<T> AsRef<ChunkedArray<T>> for ChunkedArray<T>where
T: PolarsDataType,
Source§fn as_ref(&self) -> &ChunkedArray<T>
fn as_ref(&self) -> &ChunkedArray<T>
Source§impl<T> AsRefDataType for ChunkedArray<T>where
T: PolarsDataType,
impl<T> AsRefDataType for ChunkedArray<T>where
T: PolarsDataType,
fn as_ref_dtype(&self) -> &DataType
Source§impl AsString for ChunkedArray<StringType>
impl AsString for ChunkedArray<StringType>
fn as_string(&self) -> &ChunkedArray<StringType>
Source§impl AsString for ChunkedArray<StringType>
impl AsString for ChunkedArray<StringType>
fn as_string(&self) -> &ChunkedArray<StringType>
Source§impl<T> ChunkAgg<<T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
<T as PolarsNumericType>::Native: WrappingSum,
PrimitiveArray<<T as PolarsNumericType>::Native>: for<'a> MinMaxKernel<Scalar<'a> = <T as PolarsNumericType>::Native>,
impl<T> ChunkAgg<<T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
<T as PolarsNumericType>::Native: WrappingSum,
PrimitiveArray<<T as PolarsNumericType>::Native>: for<'a> MinMaxKernel<Scalar<'a> = <T as PolarsNumericType>::Native>,
Source§fn sum(&self) -> Option<<T as PolarsNumericType>::Native>
fn sum(&self) -> Option<<T as PolarsNumericType>::Native>
None
if not implemented for T
.
If the array is empty, 0
is returnedfn _sum_as_f64(&self) -> f64
fn min(&self) -> Option<<T as PolarsNumericType>::Native>
Source§fn max(&self) -> Option<<T as PolarsNumericType>::Native>
fn max(&self) -> Option<<T as PolarsNumericType>::Native>
None
if the array is empty or only contains null values.fn min_max( &self, ) -> Option<(<T as PolarsNumericType>::Native, <T as PolarsNumericType>::Native)>
Source§impl ChunkAggSeries for ChunkedArray<StringType>
impl ChunkAggSeries for ChunkedArray<StringType>
Source§fn max_reduce(&self) -> Scalar
fn max_reduce(&self) -> Scalar
ChunkedArray
as a new Series
of length 1.Source§fn min_reduce(&self) -> Scalar
fn min_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<T> ChunkAggSeries for ChunkedArray<T>where
T: PolarsNumericType,
<T as PolarsNumericType>::Native: WrappingSum,
PrimitiveArray<<T as PolarsNumericType>::Native>: for<'a> MinMaxKernel<Scalar<'a> = <T as PolarsNumericType>::Native>,
ChunkedArray<T>: IntoSeries,
impl<T> ChunkAggSeries for ChunkedArray<T>where
T: PolarsNumericType,
<T as PolarsNumericType>::Native: WrappingSum,
PrimitiveArray<<T as PolarsNumericType>::Native>: for<'a> MinMaxKernel<Scalar<'a> = <T as PolarsNumericType>::Native>,
ChunkedArray<T>: IntoSeries,
Source§fn sum_reduce(&self) -> Scalar
fn sum_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 min_reduce(&self) -> Scalar
fn min_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 ChunkAnyValue for ChunkedArray<StringType>
impl ChunkAnyValue for ChunkedArray<StringType>
Source§unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>
unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>
Source§fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>
fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>
Source§impl<T> ChunkAnyValue for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkAnyValue for ChunkedArray<T>where
T: PolarsNumericType,
Source§unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>
unsafe fn get_any_value_unchecked(&self, index: usize) -> AnyValue<'_>
Source§fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>
fn get_any_value(&self, index: usize) -> Result<AnyValue<'_>, PolarsError>
Source§impl<'a> ChunkApply<'a, &'a str> for ChunkedArray<StringType>
impl<'a> ChunkApply<'a, &'a str> for ChunkedArray<StringType>
type FuncRet = Cow<'a, str>
Source§fn apply_values<F>(&'a self, f: F) -> ChunkedArray<StringType>
fn apply_values<F>(&'a self, f: F) -> ChunkedArray<StringType>
Source§fn apply<F>(&'a self, f: F) -> ChunkedArray<StringType>
fn apply<F>(&'a self, f: F) -> ChunkedArray<StringType>
Source§impl<'a, T> ChunkApply<'a, <T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
impl<'a, T> ChunkApply<'a, <T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
type FuncRet = <T as PolarsNumericType>::Native
Source§fn apply_values<F>(&'a self, f: F) -> ChunkedArray<T>
fn apply_values<F>(&'a self, f: F) -> ChunkedArray<T>
Source§fn apply<F>(&'a self, f: F) -> ChunkedArray<T>where
F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native> + Copy,
fn apply<F>(&'a self, f: F) -> ChunkedArray<T>where
F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native> + Copy,
Source§fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])
fn apply_to_slice<F, V>(&'a self, f: F, slice: &mut [V])
Source§impl ChunkApplyKernel<BinaryViewArrayGeneric<str>> for ChunkedArray<StringType>
impl ChunkApplyKernel<BinaryViewArrayGeneric<str>> for ChunkedArray<StringType>
Source§fn apply_kernel(
&self,
f: &dyn Fn(&BinaryViewArrayGeneric<str>) -> Box<dyn Array>,
) -> ChunkedArray<StringType>
fn apply_kernel( &self, f: &dyn Fn(&BinaryViewArrayGeneric<str>) -> Box<dyn Array>, ) -> ChunkedArray<StringType>
Source§fn apply_kernel_cast<S>(
&self,
f: &dyn Fn(&BinaryViewArrayGeneric<str>) -> Box<dyn Array>,
) -> ChunkedArray<S>where
S: PolarsDataType,
fn apply_kernel_cast<S>(
&self,
f: &dyn Fn(&BinaryViewArrayGeneric<str>) -> Box<dyn Array>,
) -> ChunkedArray<S>where
S: PolarsDataType,
Source§impl<T> ChunkApplyKernel<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkApplyKernel<PrimitiveArray<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where
T: PolarsNumericType,
Source§fn apply_kernel(
&self,
f: &dyn Fn(&PrimitiveArray<<T as PolarsNumericType>::Native>) -> Box<dyn Array>,
) -> ChunkedArray<T>
fn apply_kernel( &self, f: &dyn Fn(&PrimitiveArray<<T as PolarsNumericType>::Native>) -> Box<dyn Array>, ) -> ChunkedArray<T>
Source§fn apply_kernel_cast<S>(
&self,
f: &dyn Fn(&PrimitiveArray<<T as PolarsNumericType>::Native>) -> Box<dyn Array>,
) -> ChunkedArray<S>where
S: PolarsDataType,
fn apply_kernel_cast<S>(
&self,
f: &dyn Fn(&PrimitiveArray<<T as PolarsNumericType>::Native>) -> Box<dyn Array>,
) -> ChunkedArray<S>where
S: PolarsDataType,
Source§impl<T> ChunkApproxNUnique for ChunkedArray<T>where
T: PolarsDataType,
<T as PolarsDataType>::Physical<'a>: for<'a> TotalHash + for<'a> TotalEq + for<'a> Copy + for<'a> ToTotalOrd,
<Option<<T as PolarsDataType>::Physical<'a>> as ToTotalOrd>::TotalOrdItem: for<'a> Hash + for<'a> Eq,
impl<T> ChunkApproxNUnique for ChunkedArray<T>where
T: PolarsDataType,
<T as PolarsDataType>::Physical<'a>: for<'a> TotalHash + for<'a> TotalEq + for<'a> Copy + for<'a> ToTotalOrd,
<Option<<T as PolarsDataType>::Physical<'a>> as ToTotalOrd>::TotalOrdItem: for<'a> Hash + for<'a> Eq,
fn approx_n_unique(&self) -> u32
Source§impl ChunkCast for ChunkedArray<StringType>
impl ChunkCast for ChunkedArray<StringType>
Source§fn cast_with_options(
&self,
dtype: &DataType,
options: CastOptions,
) -> Result<Series, PolarsError>
fn cast_with_options( &self, dtype: &DataType, options: CastOptions, ) -> Result<Series, PolarsError>
ChunkedArray
to DataType
Source§unsafe fn cast_unchecked(&self, dtype: &DataType) -> Result<Series, PolarsError>
unsafe fn cast_unchecked(&self, dtype: &DataType) -> Result<Series, PolarsError>
Source§fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>
fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>
ChunkedArray
to DataType
Source§impl<T> ChunkCast for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkCast for ChunkedArray<T>where
T: PolarsNumericType,
Source§fn cast_with_options(
&self,
dtype: &DataType,
options: CastOptions,
) -> Result<Series, PolarsError>
fn cast_with_options( &self, dtype: &DataType, options: CastOptions, ) -> Result<Series, PolarsError>
ChunkedArray
to DataType
Source§unsafe fn cast_unchecked(&self, dtype: &DataType) -> Result<Series, PolarsError>
unsafe fn cast_unchecked(&self, dtype: &DataType) -> Result<Series, PolarsError>
Source§fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>
fn cast(&self, dtype: &DataType) -> Result<Series, PolarsError>
ChunkedArray
to DataType
Source§impl ChunkCompareEq<&ChunkedArray<StringType>> for ChunkedArray<StringType>
impl ChunkCompareEq<&ChunkedArray<StringType>> for ChunkedArray<StringType>
type Item = ChunkedArray<BooleanType>
Source§fn equal(&self, rhs: &ChunkedArray<StringType>) -> ChunkedArray<BooleanType>
fn equal(&self, rhs: &ChunkedArray<StringType>) -> ChunkedArray<BooleanType>
Source§fn equal_missing(
&self,
rhs: &ChunkedArray<StringType>,
) -> ChunkedArray<BooleanType>
fn equal_missing( &self, rhs: &ChunkedArray<StringType>, ) -> ChunkedArray<BooleanType>
None == None
.Source§fn not_equal(&self, rhs: &ChunkedArray<StringType>) -> ChunkedArray<BooleanType>
fn not_equal(&self, rhs: &ChunkedArray<StringType>) -> ChunkedArray<BooleanType>
Source§fn not_equal_missing(
&self,
rhs: &ChunkedArray<StringType>,
) -> ChunkedArray<BooleanType>
fn not_equal_missing( &self, rhs: &ChunkedArray<StringType>, ) -> ChunkedArray<BooleanType>
None == None
.Source§impl<T> ChunkCompareEq<&ChunkedArray<T>> for ChunkedArray<T>where
<T as PolarsDataType>::Array: TotalOrdKernel<Scalar = <T as PolarsNumericType>::Native> + TotalEqKernel<Scalar = <T as PolarsNumericType>::Native>,
T: PolarsNumericType,
impl<T> ChunkCompareEq<&ChunkedArray<T>> for ChunkedArray<T>where
<T as PolarsDataType>::Array: TotalOrdKernel<Scalar = <T as PolarsNumericType>::Native> + TotalEqKernel<Scalar = <T as PolarsNumericType>::Native>,
T: PolarsNumericType,
type Item = ChunkedArray<BooleanType>
Source§fn equal(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
fn equal(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
Source§fn equal_missing(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
fn equal_missing(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
None == None
.Source§fn not_equal(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
fn not_equal(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
Source§fn not_equal_missing(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
fn not_equal_missing(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
None == None
.Source§impl ChunkCompareEq<&str> for ChunkedArray<StringType>
impl ChunkCompareEq<&str> for ChunkedArray<StringType>
type Item = ChunkedArray<BooleanType>
Source§fn equal(&self, rhs: &str) -> ChunkedArray<BooleanType>
fn equal(&self, rhs: &str) -> ChunkedArray<BooleanType>
Source§fn equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>
fn equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>
None == None
.Source§fn not_equal(&self, rhs: &str) -> ChunkedArray<BooleanType>
fn not_equal(&self, rhs: &str) -> ChunkedArray<BooleanType>
Source§fn not_equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>
fn not_equal_missing(&self, rhs: &str) -> ChunkedArray<BooleanType>
None == None
.Source§impl<T, Rhs> ChunkCompareEq<Rhs> for ChunkedArray<T>where
T: PolarsNumericType,
Rhs: ToPrimitive,
<T as PolarsDataType>::Array: TotalOrdKernel<Scalar = <T as PolarsNumericType>::Native> + TotalEqKernel<Scalar = <T as PolarsNumericType>::Native>,
impl<T, Rhs> ChunkCompareEq<Rhs> for ChunkedArray<T>where
T: PolarsNumericType,
Rhs: ToPrimitive,
<T as PolarsDataType>::Array: TotalOrdKernel<Scalar = <T as PolarsNumericType>::Native> + TotalEqKernel<Scalar = <T as PolarsNumericType>::Native>,
type Item = ChunkedArray<BooleanType>
Source§fn equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
fn equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
Source§fn equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
fn equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
None == None
.Source§fn not_equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
fn not_equal(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
Source§fn not_equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
fn not_equal_missing(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
None == None
.Source§impl ChunkCompareIneq<&ChunkedArray<StringType>> for ChunkedArray<StringType>
impl ChunkCompareIneq<&ChunkedArray<StringType>> for ChunkedArray<StringType>
type Item = ChunkedArray<BooleanType>
Source§fn gt(&self, rhs: &ChunkedArray<StringType>) -> ChunkedArray<BooleanType>
fn gt(&self, rhs: &ChunkedArray<StringType>) -> ChunkedArray<BooleanType>
Source§fn gt_eq(&self, rhs: &ChunkedArray<StringType>) -> ChunkedArray<BooleanType>
fn gt_eq(&self, rhs: &ChunkedArray<StringType>) -> ChunkedArray<BooleanType>
Source§fn lt(&self, rhs: &ChunkedArray<StringType>) -> ChunkedArray<BooleanType>
fn lt(&self, rhs: &ChunkedArray<StringType>) -> ChunkedArray<BooleanType>
Source§fn lt_eq(&self, rhs: &ChunkedArray<StringType>) -> ChunkedArray<BooleanType>
fn lt_eq(&self, rhs: &ChunkedArray<StringType>) -> ChunkedArray<BooleanType>
Source§impl<T> ChunkCompareIneq<&ChunkedArray<T>> for ChunkedArray<T>where
<T as PolarsDataType>::Array: TotalOrdKernel<Scalar = <T as PolarsNumericType>::Native> + TotalEqKernel<Scalar = <T as PolarsNumericType>::Native>,
T: PolarsNumericType,
impl<T> ChunkCompareIneq<&ChunkedArray<T>> for ChunkedArray<T>where
<T as PolarsDataType>::Array: TotalOrdKernel<Scalar = <T as PolarsNumericType>::Native> + TotalEqKernel<Scalar = <T as PolarsNumericType>::Native>,
T: PolarsNumericType,
type Item = ChunkedArray<BooleanType>
Source§fn lt(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
fn lt(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
Source§fn lt_eq(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
fn lt_eq(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
Source§fn gt(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
fn gt(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
Source§fn gt_eq(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
fn gt_eq(&self, rhs: &ChunkedArray<T>) -> ChunkedArray<BooleanType>
Source§impl ChunkCompareIneq<&str> for ChunkedArray<StringType>
impl ChunkCompareIneq<&str> for ChunkedArray<StringType>
type Item = ChunkedArray<BooleanType>
Source§fn gt(&self, rhs: &str) -> ChunkedArray<BooleanType>
fn gt(&self, rhs: &str) -> ChunkedArray<BooleanType>
Source§fn gt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>
fn gt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>
Source§fn lt(&self, rhs: &str) -> ChunkedArray<BooleanType>
fn lt(&self, rhs: &str) -> ChunkedArray<BooleanType>
Source§fn lt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>
fn lt_eq(&self, rhs: &str) -> ChunkedArray<BooleanType>
Source§impl<T, Rhs> ChunkCompareIneq<Rhs> for ChunkedArray<T>where
T: PolarsNumericType,
Rhs: ToPrimitive,
<T as PolarsDataType>::Array: TotalOrdKernel<Scalar = <T as PolarsNumericType>::Native> + TotalEqKernel<Scalar = <T as PolarsNumericType>::Native>,
impl<T, Rhs> ChunkCompareIneq<Rhs> for ChunkedArray<T>where
T: PolarsNumericType,
Rhs: ToPrimitive,
<T as PolarsDataType>::Array: TotalOrdKernel<Scalar = <T as PolarsNumericType>::Native> + TotalEqKernel<Scalar = <T as PolarsNumericType>::Native>,
type Item = ChunkedArray<BooleanType>
Source§fn gt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
fn gt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
Source§fn gt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
fn gt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
Source§fn lt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
fn lt(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
Source§fn lt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
fn lt_eq(&self, rhs: Rhs) -> ChunkedArray<BooleanType>
Source§impl ChunkExpandAtIndex<StringType> for ChunkedArray<StringType>
impl ChunkExpandAtIndex<StringType> for ChunkedArray<StringType>
Source§fn new_from_index(
&self,
index: usize,
length: usize,
) -> ChunkedArray<StringType>
fn new_from_index( &self, index: usize, length: usize, ) -> ChunkedArray<StringType>
Source§impl<T> ChunkExpandAtIndex<T> for ChunkedArray<T>
impl<T> ChunkExpandAtIndex<T> for ChunkedArray<T>
Source§fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<T>
fn new_from_index(&self, index: usize, length: usize) -> ChunkedArray<T>
Source§impl<T> ChunkFillNullValue<<T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkFillNullValue<<T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
Source§fn fill_null_with_values(
&self,
value: <T as PolarsNumericType>::Native,
) -> Result<ChunkedArray<T>, PolarsError>
fn fill_null_with_values( &self, value: <T as PolarsNumericType>::Native, ) -> Result<ChunkedArray<T>, PolarsError>
T
.Source§impl ChunkFilter<StringType> for ChunkedArray<StringType>
impl ChunkFilter<StringType> for ChunkedArray<StringType>
Source§fn filter(
&self,
filter: &ChunkedArray<BooleanType>,
) -> Result<ChunkedArray<StringType>, PolarsError>
fn filter( &self, filter: &ChunkedArray<BooleanType>, ) -> Result<ChunkedArray<StringType>, PolarsError>
Source§impl<T> ChunkFilter<T> for ChunkedArray<T>
impl<T> ChunkFilter<T> for ChunkedArray<T>
Source§fn filter(
&self,
filter: &ChunkedArray<BooleanType>,
) -> Result<ChunkedArray<T>, PolarsError>
fn filter( &self, filter: &ChunkedArray<BooleanType>, ) -> Result<ChunkedArray<T>, PolarsError>
Source§impl<'a> ChunkFull<&'a str> for ChunkedArray<StringType>
impl<'a> ChunkFull<&'a str> for ChunkedArray<StringType>
Source§fn full(
name: PlSmallStr,
value: &'a str,
length: usize,
) -> ChunkedArray<StringType>
fn full( name: PlSmallStr, value: &'a str, length: usize, ) -> ChunkedArray<StringType>
Source§impl<T> ChunkFull<<T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkFull<<T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
Source§fn full(
name: PlSmallStr,
value: <T as PolarsNumericType>::Native,
length: usize,
) -> ChunkedArray<T>
fn full( name: PlSmallStr, value: <T as PolarsNumericType>::Native, length: usize, ) -> ChunkedArray<T>
Source§impl ChunkFullNull for ChunkedArray<StringType>
impl ChunkFullNull for ChunkedArray<StringType>
fn full_null(name: PlSmallStr, length: usize) -> ChunkedArray<StringType>
Source§impl<T> ChunkFullNull for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkFullNull for ChunkedArray<T>where
T: PolarsNumericType,
fn full_null(name: PlSmallStr, length: usize) -> ChunkedArray<T>
Source§impl ChunkQuantile<String> for ChunkedArray<StringType>
impl ChunkQuantile<String> for ChunkedArray<StringType>
Source§fn median(&self) -> Option<T>
fn median(&self) -> Option<T>
None
if the array is empty or only contains null values.Source§fn quantile(
&self,
_quantile: f64,
_method: QuantileMethod,
) -> Result<Option<T>, PolarsError>
fn quantile( &self, _quantile: f64, _method: QuantileMethod, ) -> Result<Option<T>, PolarsError>
None
if the array is empty or only contains null values.Source§impl<T> ChunkQuantile<f64> for ChunkedArray<T>
impl<T> ChunkQuantile<f64> for ChunkedArray<T>
Source§fn quantile(
&self,
quantile: f64,
method: QuantileMethod,
) -> Result<Option<f64>, PolarsError>
fn quantile( &self, quantile: f64, method: QuantileMethod, ) -> Result<Option<f64>, PolarsError>
None
if the array is empty or only contains null values.Source§impl ChunkReverse for ChunkedArray<StringType>
impl ChunkReverse for ChunkedArray<StringType>
Source§fn reverse(&self) -> ChunkedArray<StringType>
fn reverse(&self) -> ChunkedArray<StringType>
Source§impl<T> ChunkReverse for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkReverse for ChunkedArray<T>where
T: PolarsNumericType,
Source§fn reverse(&self) -> ChunkedArray<T>
fn reverse(&self) -> ChunkedArray<T>
Source§impl<T> ChunkRollApply for ChunkedArray<T>
impl<T> ChunkRollApply for ChunkedArray<T>
Source§fn rolling_map(
&self,
f: &dyn Fn(&Series) -> Series,
options: RollingOptionsFixedWindow,
) -> Result<Series, PolarsError>
fn rolling_map( &self, f: &dyn Fn(&Series) -> Series, options: RollingOptionsFixedWindow, ) -> Result<Series, PolarsError>
Apply a rolling custom function. This is pretty slow because of dynamic dispatch.
Source§impl<'a> ChunkSet<'a, &'a str, String> for ChunkedArray<StringType>
impl<'a> ChunkSet<'a, &'a str, String> for ChunkedArray<StringType>
Source§fn scatter_single<I>(
&'a self,
idx: I,
opt_value: Option<&'a str>,
) -> Result<ChunkedArray<StringType>, PolarsError>
fn scatter_single<I>( &'a self, idx: I, opt_value: Option<&'a str>, ) -> Result<ChunkedArray<StringType>, PolarsError>
Source§fn scatter_with<I, F>(
&'a self,
idx: I,
f: F,
) -> Result<ChunkedArray<StringType>, PolarsError>where
I: IntoIterator<Item = u32>,
ChunkedArray<StringType>: Sized,
F: Fn(Option<&'a str>) -> Option<String>,
fn scatter_with<I, F>(
&'a self,
idx: I,
f: F,
) -> Result<ChunkedArray<StringType>, PolarsError>where
I: IntoIterator<Item = u32>,
ChunkedArray<StringType>: Sized,
F: Fn(Option<&'a str>) -> Option<String>,
idx
by applying a closure to these values. Read moreSource§fn set(
&'a self,
mask: &ChunkedArray<BooleanType>,
value: Option<&'a str>,
) -> Result<ChunkedArray<StringType>, PolarsError>
fn set( &'a self, mask: &ChunkedArray<BooleanType>, value: Option<&'a str>, ) -> Result<ChunkedArray<StringType>, PolarsError>
Source§impl<'a, T> ChunkSet<'a, <T as PolarsNumericType>::Native, <T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
impl<'a, T> ChunkSet<'a, <T as PolarsNumericType>::Native, <T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
Source§fn scatter_single<I>(
&'a self,
idx: I,
value: Option<<T as PolarsNumericType>::Native>,
) -> Result<ChunkedArray<T>, PolarsError>where
I: IntoIterator<Item = u32>,
fn scatter_single<I>(
&'a self,
idx: I,
value: Option<<T as PolarsNumericType>::Native>,
) -> Result<ChunkedArray<T>, PolarsError>where
I: IntoIterator<Item = u32>,
Source§fn scatter_with<I, F>(
&'a self,
idx: I,
f: F,
) -> Result<ChunkedArray<T>, PolarsError>where
I: IntoIterator<Item = u32>,
F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native>,
fn scatter_with<I, F>(
&'a self,
idx: I,
f: F,
) -> Result<ChunkedArray<T>, PolarsError>where
I: IntoIterator<Item = u32>,
F: Fn(Option<<T as PolarsNumericType>::Native>) -> Option<<T as PolarsNumericType>::Native>,
idx
by applying a closure to these values. Read moreSource§fn set(
&'a self,
mask: &ChunkedArray<BooleanType>,
value: Option<<T as PolarsNumericType>::Native>,
) -> Result<ChunkedArray<T>, PolarsError>
fn set( &'a self, mask: &ChunkedArray<BooleanType>, value: Option<<T as PolarsNumericType>::Native>, ) -> Result<ChunkedArray<T>, PolarsError>
Source§impl ChunkShift<StringType> for ChunkedArray<StringType>
impl ChunkShift<StringType> for ChunkedArray<StringType>
fn shift(&self, periods: i64) -> ChunkedArray<StringType>
Source§impl<T> ChunkShift<T> for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkShift<T> for ChunkedArray<T>where
T: PolarsNumericType,
fn shift(&self, periods: i64) -> ChunkedArray<T>
Source§impl ChunkShiftFill<StringType, Option<&str>> for ChunkedArray<StringType>
impl ChunkShiftFill<StringType, Option<&str>> for ChunkedArray<StringType>
Source§fn shift_and_fill(
&self,
periods: i64,
fill_value: Option<&str>,
) -> ChunkedArray<StringType>
fn shift_and_fill( &self, periods: i64, fill_value: Option<&str>, ) -> ChunkedArray<StringType>
fill_value
.Source§impl<T> ChunkShiftFill<T, Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkShiftFill<T, Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where
T: PolarsNumericType,
Source§fn shift_and_fill(
&self,
periods: i64,
fill_value: Option<<T as PolarsNumericType>::Native>,
) -> ChunkedArray<T>
fn shift_and_fill( &self, periods: i64, fill_value: Option<<T as PolarsNumericType>::Native>, ) -> ChunkedArray<T>
fill_value
.Source§impl ChunkSort<StringType> for ChunkedArray<StringType>
impl ChunkSort<StringType> for ChunkedArray<StringType>
Source§fn arg_sort_multiple(
&self,
by: &[Column],
options: &SortMultipleOptions,
) -> Result<ChunkedArray<UInt32Type>, PolarsError>
fn arg_sort_multiple( &self, by: &[Column], options: &SortMultipleOptions, ) -> Result<ChunkedArray<UInt32Type>, PolarsError>
§Panics
This function is very opinionated. On the implementation of ChunkedArray<T>
for numeric types,
we assume that all numeric Series
are of the same type.
In this case we assume that all numeric Series
are f64
types. The caller needs to
uphold this contract. If not, it will panic.
fn sort_with(&self, options: SortOptions) -> ChunkedArray<StringType>
Source§fn sort(&self, descending: bool) -> ChunkedArray<StringType>
fn sort(&self, descending: bool) -> ChunkedArray<StringType>
ChunkedArray
.Source§fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>
fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>
Source§impl<T> ChunkSort<T> for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkSort<T> for ChunkedArray<T>where
T: PolarsNumericType,
Source§fn arg_sort_multiple(
&self,
by: &[Column],
options: &SortMultipleOptions,
) -> Result<ChunkedArray<UInt32Type>, PolarsError>
fn arg_sort_multiple( &self, by: &[Column], options: &SortMultipleOptions, ) -> Result<ChunkedArray<UInt32Type>, PolarsError>
§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) -> ChunkedArray<T>
Source§fn sort(&self, descending: bool) -> ChunkedArray<T>
fn sort(&self, descending: bool) -> ChunkedArray<T>
ChunkedArray
.Source§fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>
fn arg_sort(&self, options: SortOptions) -> ChunkedArray<UInt32Type>
Source§impl<T> ChunkTake<ChunkedArray<UInt32Type>> for ChunkedArray<T>
impl<T> ChunkTake<ChunkedArray<UInt32Type>> for ChunkedArray<T>
Source§fn take(
&self,
indices: &ChunkedArray<UInt32Type>,
) -> Result<ChunkedArray<T>, PolarsError>
fn take( &self, indices: &ChunkedArray<UInt32Type>, ) -> Result<ChunkedArray<T>, PolarsError>
Gather values from ChunkedArray by index.
Source§impl<T, I> ChunkTake<I> for ChunkedArray<T>
impl<T, I> ChunkTake<I> for ChunkedArray<T>
Source§fn take(&self, indices: &I) -> Result<ChunkedArray<T>, PolarsError>
fn take(&self, indices: &I) -> Result<ChunkedArray<T>, PolarsError>
Gather values from ChunkedArray by index.
Source§impl ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for ChunkedArray<StringType>
impl ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for ChunkedArray<StringType>
Source§unsafe fn take_unchecked(
&self,
indices: &ChunkedArray<UInt32Type>,
) -> ChunkedArray<StringType>
unsafe fn take_unchecked( &self, indices: &ChunkedArray<UInt32Type>, ) -> ChunkedArray<StringType>
Source§impl<T> ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for ChunkedArray<T>
impl<T> ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for ChunkedArray<T>
Source§unsafe fn take_unchecked(
&self,
indices: &ChunkedArray<UInt32Type>,
) -> ChunkedArray<T>
unsafe fn take_unchecked( &self, indices: &ChunkedArray<UInt32Type>, ) -> ChunkedArray<T>
Gather values from ChunkedArray by index.
Source§impl<I> ChunkTakeUnchecked<I> for ChunkedArray<StringType>
impl<I> ChunkTakeUnchecked<I> for ChunkedArray<StringType>
Source§unsafe fn take_unchecked(&self, indices: &I) -> ChunkedArray<StringType>
unsafe fn take_unchecked(&self, indices: &I) -> ChunkedArray<StringType>
Gather values from ChunkedArray by index.
Source§impl<T, I> ChunkTakeUnchecked<I> for ChunkedArray<T>where
T: PolarsDataType<HasViews = FalseT, IsStruct = FalseT, IsNested = FalseT> + PolarsDataType,
I: AsRef<[u32]> + ?Sized,
impl<T, I> ChunkTakeUnchecked<I> for ChunkedArray<T>where
T: PolarsDataType<HasViews = FalseT, IsStruct = FalseT, IsNested = FalseT> + PolarsDataType,
I: AsRef<[u32]> + ?Sized,
Source§unsafe fn take_unchecked(&self, indices: &I) -> ChunkedArray<T>
unsafe fn take_unchecked(&self, indices: &I) -> ChunkedArray<T>
Gather values from ChunkedArray by index.
Source§impl ChunkUnique for ChunkedArray<StringType>
impl ChunkUnique for ChunkedArray<StringType>
Source§fn unique(&self) -> Result<ChunkedArray<StringType>, PolarsError>
fn unique(&self) -> Result<ChunkedArray<StringType>, PolarsError>
Source§fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>
fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>
ChunkedArray
.
This Vec is sorted.Source§impl<T> ChunkUnique for ChunkedArray<T>where
T: PolarsNumericType,
<T as PolarsNumericType>::Native: TotalHash + TotalEq + ToTotalOrd,
<<T as PolarsNumericType>::Native as ToTotalOrd>::TotalOrdItem: Hash + Eq + Ord,
ChunkedArray<T>: IntoSeries + for<'a> ChunkCompareEq<&'a ChunkedArray<T>, Item = ChunkedArray<BooleanType>>,
impl<T> ChunkUnique for ChunkedArray<T>where
T: PolarsNumericType,
<T as PolarsNumericType>::Native: TotalHash + TotalEq + ToTotalOrd,
<<T as PolarsNumericType>::Native as ToTotalOrd>::TotalOrdItem: Hash + Eq + Ord,
ChunkedArray<T>: IntoSeries + for<'a> ChunkCompareEq<&'a ChunkedArray<T>, Item = ChunkedArray<BooleanType>>,
Source§fn unique(&self) -> Result<ChunkedArray<T>, PolarsError>
fn unique(&self) -> Result<ChunkedArray<T>, PolarsError>
Source§fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>
fn arg_unique(&self) -> Result<ChunkedArray<UInt32Type>, PolarsError>
ChunkedArray
.
This Vec is sorted.Source§impl ChunkVar for ChunkedArray<StringType>
impl ChunkVar for ChunkedArray<StringType>
Source§impl<T> ChunkVar for ChunkedArray<T>
impl<T> ChunkVar for ChunkedArray<T>
Source§impl<T> ChunkZip<T> for ChunkedArray<T>where
<T as PolarsDataType>::Array: for<'a> IfThenElseKernel<Scalar<'a> = <T as PolarsDataType>::Physical<'a>>,
T: PolarsDataType<IsStruct = FalseT>,
ChunkedArray<T>: ChunkExpandAtIndex<T>,
impl<T> ChunkZip<T> for ChunkedArray<T>where
<T as PolarsDataType>::Array: for<'a> IfThenElseKernel<Scalar<'a> = <T as PolarsDataType>::Physical<'a>>,
T: PolarsDataType<IsStruct = FalseT>,
ChunkedArray<T>: ChunkExpandAtIndex<T>,
Source§fn zip_with(
&self,
mask: &ChunkedArray<BooleanType>,
other: &ChunkedArray<T>,
) -> Result<ChunkedArray<T>, PolarsError>
fn zip_with( &self, mask: &ChunkedArray<BooleanType>, other: &ChunkedArray<T>, ) -> Result<ChunkedArray<T>, PolarsError>
true
and values
from other
where the mask evaluates false
Source§impl<T> Clone for ChunkedArray<T>where
T: PolarsDataType,
impl<T> Clone for ChunkedArray<T>where
T: PolarsDataType,
Source§fn clone(&self) -> ChunkedArray<T>
fn clone(&self) -> ChunkedArray<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<T> Container for ChunkedArray<T>where
T: PolarsDataType,
impl<T> Container for ChunkedArray<T>where
T: PolarsDataType,
fn slice(&self, offset: i64, len: usize) -> ChunkedArray<T>
fn split_at(&self, offset: i64) -> (ChunkedArray<T>, ChunkedArray<T>)
fn len(&self) -> usize
fn iter_chunks(&self) -> impl Iterator<Item = ChunkedArray<T>>
fn n_chunks(&self) -> usize
fn chunk_lengths(&self) -> impl Iterator<Item = usize>
Source§impl Debug for ChunkedArray<StringType>
impl Debug for ChunkedArray<StringType>
Source§impl<T> Debug for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> Debug for ChunkedArray<T>where
T: PolarsNumericType,
Source§impl<T> Default for ChunkedArray<T>where
T: PolarsDataType,
impl<T> Default for ChunkedArray<T>where
T: PolarsDataType,
Source§fn default() -> ChunkedArray<T>
fn default() -> ChunkedArray<T>
Source§impl<T, N> Div<N> for ChunkedArray<T>
impl<T, N> Div<N> for ChunkedArray<T>
Source§impl<T> Div for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> Div for ChunkedArray<T>where
T: PolarsNumericType,
Source§type Output = ChunkedArray<T>
type Output = ChunkedArray<T>
/
operator.Source§fn div(self, rhs: ChunkedArray<T>) -> <ChunkedArray<T> as Div>::Output
fn div(self, rhs: ChunkedArray<T>) -> <ChunkedArray<T> as Div>::Output
/
operation. Read moreSource§impl<T> Drop for ChunkedArray<T>where
T: PolarsDataType,
impl<T> Drop for ChunkedArray<T>where
T: PolarsDataType,
Source§impl<T, A> From<A> for ChunkedArray<T>where
T: PolarsDataType<Array = A>,
A: Array,
impl<T, A> From<A> for ChunkedArray<T>where
T: PolarsDataType<Array = A>,
A: Array,
Source§fn from(arr: A) -> ChunkedArray<T>
fn from(arr: A) -> ChunkedArray<T>
Source§impl<T> FromIterator<(Vec<<T as PolarsNumericType>::Native>, Option<Bitmap>)> for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> FromIterator<(Vec<<T as PolarsNumericType>::Native>, Option<Bitmap>)> for ChunkedArray<T>where
T: PolarsNumericType,
Source§fn from_iter<I>(iter: I) -> ChunkedArray<T>
fn from_iter<I>(iter: I) -> ChunkedArray<T>
Source§impl<T> FromIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where
T: PolarsNumericType,
FromIterator trait
impl<T> FromIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where
T: PolarsNumericType,
FromIterator trait
Source§fn from_iter<I>(iter: I) -> ChunkedArray<T>
fn from_iter<I>(iter: I) -> ChunkedArray<T>
Source§impl<Ptr> FromIterator<Option<Ptr>> for ChunkedArray<StringType>
impl<Ptr> FromIterator<Option<Ptr>> for ChunkedArray<StringType>
Source§fn from_iter<I>(iter: I) -> ChunkedArray<StringType>where
I: IntoIterator<Item = Option<Ptr>>,
fn from_iter<I>(iter: I) -> ChunkedArray<StringType>where
I: IntoIterator<Item = Option<Ptr>>,
Source§impl<Ptr> FromIterator<Ptr> for ChunkedArray<StringType>where
Ptr: PolarsAsRef<str>,
impl<Ptr> FromIterator<Ptr> for ChunkedArray<StringType>where
Ptr: PolarsAsRef<str>,
Source§fn from_iter<I>(iter: I) -> ChunkedArray<StringType>where
I: IntoIterator<Item = Ptr>,
fn from_iter<I>(iter: I) -> ChunkedArray<StringType>where
I: IntoIterator<Item = Ptr>,
Source§impl<T> FromIteratorReversed<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> FromIteratorReversed<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where
T: PolarsNumericType,
fn from_trusted_len_iter_rev<I>(iter: I) -> ChunkedArray<T>
Source§impl<T> FromParallelIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> FromParallelIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where
T: PolarsNumericType,
Source§fn from_par_iter<I>(iter: I) -> ChunkedArray<T>
fn from_par_iter<I>(iter: I) -> ChunkedArray<T>
par_iter
. Read moreSource§impl<Ptr> FromParallelIterator<Option<Ptr>> for ChunkedArray<StringType>
impl<Ptr> FromParallelIterator<Option<Ptr>> for ChunkedArray<StringType>
Source§fn from_par_iter<I>(iter: I) -> ChunkedArray<StringType>where
I: IntoParallelIterator<Item = Option<Ptr>>,
fn from_par_iter<I>(iter: I) -> ChunkedArray<StringType>where
I: IntoParallelIterator<Item = Option<Ptr>>,
par_iter
. Read moreSource§impl<Ptr> FromParallelIterator<Ptr> for ChunkedArray<StringType>
impl<Ptr> FromParallelIterator<Ptr> for ChunkedArray<StringType>
Source§fn from_par_iter<I>(iter: I) -> ChunkedArray<StringType>where
I: IntoParallelIterator<Item = Ptr>,
fn from_par_iter<I>(iter: I) -> ChunkedArray<StringType>where
I: IntoParallelIterator<Item = Ptr>,
par_iter
. Read moreSource§impl<T> FromTrustedLenIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> FromTrustedLenIterator<Option<<T as PolarsNumericType>::Native>> for ChunkedArray<T>where
T: PolarsNumericType,
fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<T>where
I: IntoIterator<Item = Option<<T as PolarsNumericType>::Native>>,
<I as IntoIterator>::IntoIter: TrustedLen,
Source§impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for ChunkedArray<StringType>
impl<Ptr> FromTrustedLenIterator<Option<Ptr>> for ChunkedArray<StringType>
fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<StringType>where
I: IntoIterator<Item = Option<Ptr>>,
Source§impl<Ptr> FromTrustedLenIterator<Ptr> for ChunkedArray<StringType>where
Ptr: PolarsAsRef<str>,
impl<Ptr> FromTrustedLenIterator<Ptr> for ChunkedArray<StringType>where
Ptr: PolarsAsRef<str>,
fn from_iter_trusted_length<I>(iter: I) -> ChunkedArray<StringType>where
I: IntoIterator<Item = Ptr>,
Source§impl IntoGroupsType for ChunkedArray<StringType>
impl IntoGroupsType for ChunkedArray<StringType>
Source§fn group_tuples<'a>(
&'a self,
multithreaded: bool,
sorted: bool,
) -> Result<GroupsType, PolarsError>
fn group_tuples<'a>( &'a self, multithreaded: bool, sorted: bool, ) -> Result<GroupsType, PolarsError>
Source§impl<T> IntoGroupsType for ChunkedArray<T>
impl<T> IntoGroupsType for ChunkedArray<T>
Source§fn group_tuples(
&self,
multithreaded: bool,
sorted: bool,
) -> Result<GroupsType, PolarsError>
fn group_tuples( &self, multithreaded: bool, sorted: bool, ) -> Result<GroupsType, PolarsError>
Source§impl<T> IntoSeries for ChunkedArray<T>
impl<T> IntoSeries for ChunkedArray<T>
fn into_series(self) -> Serieswhere
ChunkedArray<T>: Sized,
fn is_series() -> bool
Source§impl<T, N> Mul<N> for ChunkedArray<T>
impl<T, N> Mul<N> for ChunkedArray<T>
Source§impl<T> Mul for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> Mul for ChunkedArray<T>where
T: PolarsNumericType,
Source§type Output = ChunkedArray<T>
type Output = ChunkedArray<T>
*
operator.Source§fn mul(self, rhs: ChunkedArray<T>) -> <ChunkedArray<T> as Mul>::Output
fn mul(self, rhs: ChunkedArray<T>) -> <ChunkedArray<T> as Mul>::Output
*
operation. Read moreSource§impl<'a, T> NamedFrom<T, [&'a str]> for ChunkedArray<StringType>
impl<'a, T> NamedFrom<T, [&'a str]> for ChunkedArray<StringType>
Source§fn new(name: PlSmallStr, v: T) -> ChunkedArray<StringType>
fn new(name: PlSmallStr, v: T) -> ChunkedArray<StringType>
Source§impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for ChunkedArray<StringType>
impl<'a, T> NamedFrom<T, [Cow<'a, str>]> for ChunkedArray<StringType>
Source§fn new(name: PlSmallStr, v: T) -> ChunkedArray<StringType>
fn new(name: PlSmallStr, v: T) -> ChunkedArray<StringType>
Source§impl<'a, T> NamedFrom<T, [Option<&'a str>]> for ChunkedArray<StringType>
impl<'a, T> NamedFrom<T, [Option<&'a str>]> for ChunkedArray<StringType>
Source§fn new(name: PlSmallStr, v: T) -> ChunkedArray<StringType>
fn new(name: PlSmallStr, v: T) -> ChunkedArray<StringType>
Source§impl<'a, T> NamedFrom<T, [Option<Cow<'a, str>>]> for ChunkedArray<StringType>
impl<'a, T> NamedFrom<T, [Option<Cow<'a, str>>]> for ChunkedArray<StringType>
Source§fn new(name: PlSmallStr, v: T) -> ChunkedArray<StringType>
fn new(name: PlSmallStr, v: T) -> ChunkedArray<StringType>
Source§impl<T> NamedFrom<T, [Option<String>]> for ChunkedArray<StringType>
impl<T> NamedFrom<T, [Option<String>]> for ChunkedArray<StringType>
Source§fn new(name: PlSmallStr, v: T) -> ChunkedArray<StringType>
fn new(name: PlSmallStr, v: T) -> ChunkedArray<StringType>
Source§impl<T> NamedFrom<T, [String]> for ChunkedArray<StringType>
impl<T> NamedFrom<T, [String]> for ChunkedArray<StringType>
Source§fn new(name: PlSmallStr, v: T) -> ChunkedArray<StringType>
fn new(name: PlSmallStr, v: T) -> ChunkedArray<StringType>
Source§impl<S> NewChunkedArray<StringType, S> for ChunkedArray<StringType>
impl<S> NewChunkedArray<StringType, S> for ChunkedArray<StringType>
Source§fn from_iter_values(
name: PlSmallStr,
it: impl Iterator<Item = S>,
) -> ChunkedArray<StringType>
fn from_iter_values( name: PlSmallStr, it: impl Iterator<Item = S>, ) -> ChunkedArray<StringType>
Create a new ChunkedArray from an iterator.
fn from_slice(name: PlSmallStr, v: &[S]) -> ChunkedArray<StringType>
fn from_slice_options( name: PlSmallStr, opt_v: &[Option<S>], ) -> ChunkedArray<StringType>
Source§fn from_iter_options(
name: PlSmallStr,
it: impl Iterator<Item = Option<S>>,
) -> ChunkedArray<StringType>
fn from_iter_options( name: PlSmallStr, it: impl Iterator<Item = Option<S>>, ) -> ChunkedArray<StringType>
Source§impl<T> NewChunkedArray<T, <T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> NewChunkedArray<T, <T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
Source§fn from_iter_values(
name: PlSmallStr,
it: impl Iterator<Item = <T as PolarsNumericType>::Native>,
) -> ChunkedArray<T>
fn from_iter_values( name: PlSmallStr, it: impl Iterator<Item = <T as PolarsNumericType>::Native>, ) -> ChunkedArray<T>
Create a new ChunkedArray from an iterator.
fn from_slice( name: PlSmallStr, v: &[<T as PolarsNumericType>::Native], ) -> ChunkedArray<T>
fn from_slice_options( name: PlSmallStr, opt_v: &[Option<<T as PolarsNumericType>::Native>], ) -> ChunkedArray<T>
Source§fn from_iter_options(
name: PlSmallStr,
it: impl Iterator<Item = Option<<T as PolarsNumericType>::Native>>,
) -> ChunkedArray<T>
fn from_iter_options( name: PlSmallStr, it: impl Iterator<Item = Option<<T as PolarsNumericType>::Native>>, ) -> ChunkedArray<T>
Source§impl<T> NumOpsDispatch for ChunkedArray<T>where
T: NumOpsDispatchInner,
impl<T> NumOpsDispatch for ChunkedArray<T>where
T: NumOpsDispatchInner,
fn subtract(&self, rhs: &Series) -> Result<Series, PolarsError>
fn add_to(&self, rhs: &Series) -> Result<Series, PolarsError>
fn multiply(&self, rhs: &Series) -> Result<Series, PolarsError>
fn divide(&self, rhs: &Series) -> Result<Series, PolarsError>
fn remainder(&self, rhs: &Series) -> Result<Series, PolarsError>
Source§impl<S> NumOpsDispatchChecked for ChunkedArray<S>where
S: NumOpsDispatchCheckedInner,
impl<S> NumOpsDispatchChecked for ChunkedArray<S>where
S: NumOpsDispatchCheckedInner,
Source§fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>
fn checked_div(&self, rhs: &Series) -> Result<Series, PolarsError>
fn checked_div_num<T>(&self, rhs: T) -> Result<Series, PolarsError>where
T: ToPrimitive,
Source§impl<T> QuantileAggSeries for ChunkedArray<T>
impl<T> QuantileAggSeries for ChunkedArray<T>
Source§fn quantile_reduce(
&self,
quantile: f64,
method: QuantileMethod,
) -> Result<Scalar, PolarsError>
fn quantile_reduce( &self, quantile: f64, method: QuantileMethod, ) -> Result<Scalar, PolarsError>
ChunkedArray
as a new Series
of length 1.Source§fn median_reduce(&self) -> Scalar
fn median_reduce(&self) -> Scalar
ChunkedArray
as a new Series
of length 1.Source§impl<T, N> Rem<N> for ChunkedArray<T>
impl<T, N> Rem<N> for ChunkedArray<T>
Source§impl<T> Rem for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> Rem for ChunkedArray<T>where
T: PolarsNumericType,
Source§type Output = ChunkedArray<T>
type Output = ChunkedArray<T>
%
operator.Source§fn rem(self, rhs: ChunkedArray<T>) -> <ChunkedArray<T> as Rem>::Output
fn rem(self, rhs: ChunkedArray<T>) -> <ChunkedArray<T> as Rem>::Output
%
operation. Read moreSource§impl<T> Serialize for ChunkedArray<T>
impl<T> Serialize for ChunkedArray<T>
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Source§impl StringMethods for ChunkedArray<StringType>
impl StringMethods for ChunkedArray<StringType>
Source§fn as_time(
&self,
fmt: Option<&str>,
use_cache: bool,
) -> Result<Logical<TimeType, Int64Type>, PolarsError>
fn as_time( &self, fmt: Option<&str>, use_cache: bool, ) -> Result<Logical<TimeType, Int64Type>, PolarsError>
dtype-time
only.TimeChunked
Source§fn as_date_not_exact(
&self,
fmt: Option<&str>,
) -> Result<Logical<DateType, Int32Type>, PolarsError>
fn as_date_not_exact( &self, fmt: Option<&str>, ) -> Result<Logical<DateType, Int32Type>, PolarsError>
dtype-date
only.DateChunked
Different from as_date
this function allows matches that not contain the whole string
e.g. “foo-2021-01-01-bar” could match “2021-01-01”Source§fn as_datetime_not_exact(
&self,
fmt: Option<&str>,
tu: TimeUnit,
tz_aware: bool,
tz: Option<&PlSmallStr>,
_ambiguous: &ChunkedArray<StringType>,
) -> Result<Logical<DatetimeType, Int64Type>, PolarsError>
fn as_datetime_not_exact( &self, fmt: Option<&str>, tu: TimeUnit, tz_aware: bool, tz: Option<&PlSmallStr>, _ambiguous: &ChunkedArray<StringType>, ) -> Result<Logical<DatetimeType, Int64Type>, PolarsError>
dtype-datetime
only.DatetimeChunked
Different from as_datetime
this function allows matches that not contain the whole string
e.g. “foo-2021-01-01-bar” could match “2021-01-01”Source§fn as_date(
&self,
fmt: Option<&str>,
use_cache: bool,
) -> Result<Logical<DateType, Int32Type>, PolarsError>
fn as_date( &self, fmt: Option<&str>, use_cache: bool, ) -> Result<Logical<DateType, Int32Type>, PolarsError>
dtype-date
only.DateChunked
Source§fn as_datetime(
&self,
fmt: Option<&str>,
tu: TimeUnit,
use_cache: bool,
tz_aware: bool,
tz: Option<&PlSmallStr>,
ambiguous: &ChunkedArray<StringType>,
) -> Result<Logical<DatetimeType, Int64Type>, PolarsError>
fn as_datetime( &self, fmt: Option<&str>, tu: TimeUnit, use_cache: bool, tz_aware: bool, tz: Option<&PlSmallStr>, ambiguous: &ChunkedArray<StringType>, ) -> Result<Logical<DatetimeType, Int64Type>, PolarsError>
dtype-datetime
only.DatetimeChunked
.Source§impl StringNameSpaceImpl for ChunkedArray<StringType>
impl StringNameSpaceImpl for ChunkedArray<StringType>
Source§fn hex_decode(&self) -> Result<ChunkedArray<StringType>, PolarsError>
fn hex_decode(&self) -> Result<ChunkedArray<StringType>, PolarsError>
binary_encoding
only.Source§fn hex_encode(&self) -> ChunkedArray<StringType>
fn hex_encode(&self) -> ChunkedArray<StringType>
string_encoding
only.Source§fn base64_decode(&self) -> Result<ChunkedArray<StringType>, PolarsError>
fn base64_decode(&self) -> Result<ChunkedArray<StringType>, PolarsError>
binary_encoding
only.Source§fn base64_encode(&self) -> ChunkedArray<StringType>
fn base64_encode(&self) -> ChunkedArray<StringType>
string_encoding
only.Source§fn to_integer(
&self,
base: &ChunkedArray<UInt32Type>,
strict: bool,
) -> Result<ChunkedArray<Int64Type>, PolarsError>
fn to_integer( &self, base: &ChunkedArray<UInt32Type>, strict: bool, ) -> Result<ChunkedArray<Int64Type>, PolarsError>
string_to_integer
only.fn contains_chunked( &self, pat: &ChunkedArray<StringType>, literal: bool, strict: bool, ) -> Result<ChunkedArray<BooleanType>, PolarsError>
fn find_chunked( &self, pat: &ChunkedArray<StringType>, literal: bool, strict: bool, ) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Source§fn starts_with(&self, sub: &str) -> ChunkedArray<BooleanType>
fn starts_with(&self, sub: &str) -> ChunkedArray<BooleanType>
Source§fn starts_with_chunked(
&self,
prefix: &ChunkedArray<StringType>,
) -> ChunkedArray<BooleanType>
fn starts_with_chunked( &self, prefix: &ChunkedArray<StringType>, ) -> ChunkedArray<BooleanType>
Source§fn str_len_chars(&self) -> ChunkedArray<UInt32Type>
fn str_len_chars(&self) -> ChunkedArray<UInt32Type>
Source§fn str_len_bytes(&self) -> ChunkedArray<UInt32Type>
fn str_len_bytes(&self) -> ChunkedArray<UInt32Type>
Source§fn contains(
&self,
pat: &str,
strict: bool,
) -> Result<ChunkedArray<BooleanType>, PolarsError>
fn contains( &self, pat: &str, strict: bool, ) -> Result<ChunkedArray<BooleanType>, PolarsError>
Source§fn contains_literal(
&self,
lit: &str,
) -> Result<ChunkedArray<BooleanType>, PolarsError>
fn contains_literal( &self, lit: &str, ) -> Result<ChunkedArray<BooleanType>, PolarsError>
Source§fn find_literal(
&self,
lit: &str,
) -> Result<ChunkedArray<UInt32Type>, PolarsError>
fn find_literal( &self, lit: &str, ) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Source§fn find(
&self,
pat: &str,
strict: bool,
) -> Result<ChunkedArray<UInt32Type>, PolarsError>
fn find( &self, pat: &str, strict: bool, ) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Source§fn replace<'a>(
&'a self,
pat: &str,
val: &str,
) -> Result<ChunkedArray<StringType>, PolarsError>
fn replace<'a>( &'a self, pat: &str, val: &str, ) -> Result<ChunkedArray<StringType>, PolarsError>
Source§fn replace_literal<'a>(
&'a self,
pat: &str,
val: &str,
n: usize,
) -> Result<ChunkedArray<StringType>, PolarsError>
fn replace_literal<'a>( &'a self, pat: &str, val: &str, n: usize, ) -> Result<ChunkedArray<StringType>, PolarsError>
Source§fn replace_all(
&self,
pat: &str,
val: &str,
) -> Result<ChunkedArray<StringType>, PolarsError>
fn replace_all( &self, pat: &str, val: &str, ) -> Result<ChunkedArray<StringType>, PolarsError>
Source§fn replace_literal_all<'a>(
&'a self,
pat: &str,
val: &str,
) -> Result<ChunkedArray<StringType>, PolarsError>
fn replace_literal_all<'a>( &'a self, pat: &str, val: &str, ) -> Result<ChunkedArray<StringType>, PolarsError>
Source§fn extract(
&self,
pat: &ChunkedArray<StringType>,
group_index: usize,
) -> Result<ChunkedArray<StringType>, PolarsError>
fn extract( &self, pat: &ChunkedArray<StringType>, group_index: usize, ) -> Result<ChunkedArray<StringType>, PolarsError>
Source§fn extract_all(&self, pat: &str) -> Result<ChunkedArray<ListType>, PolarsError>
fn extract_all(&self, pat: &str) -> Result<ChunkedArray<ListType>, PolarsError>
fn strip_chars( &self, pat: &Column, ) -> Result<ChunkedArray<StringType>, PolarsError>
fn strip_chars_start( &self, pat: &Column, ) -> Result<ChunkedArray<StringType>, PolarsError>
fn strip_chars_end( &self, pat: &Column, ) -> Result<ChunkedArray<StringType>, PolarsError>
fn strip_prefix( &self, prefix: &ChunkedArray<StringType>, ) -> ChunkedArray<StringType>
fn strip_suffix( &self, suffix: &ChunkedArray<StringType>, ) -> ChunkedArray<StringType>
Source§fn split_exact(
&self,
by: &ChunkedArray<StringType>,
n: usize,
) -> Result<ChunkedArray<StructType>, PolarsError>
fn split_exact( &self, by: &ChunkedArray<StringType>, n: usize, ) -> Result<ChunkedArray<StructType>, PolarsError>
dtype-struct
only.Source§fn split_exact_inclusive(
&self,
by: &ChunkedArray<StringType>,
n: usize,
) -> Result<ChunkedArray<StructType>, PolarsError>
fn split_exact_inclusive( &self, by: &ChunkedArray<StringType>, n: usize, ) -> Result<ChunkedArray<StructType>, PolarsError>
dtype-struct
only.Source§fn splitn(
&self,
by: &ChunkedArray<StringType>,
n: usize,
) -> Result<ChunkedArray<StructType>, PolarsError>
fn splitn( &self, by: &ChunkedArray<StringType>, n: usize, ) -> Result<ChunkedArray<StructType>, PolarsError>
dtype-struct
only.fn split(&self, by: &ChunkedArray<StringType>) -> ChunkedArray<ListType>
fn split_inclusive( &self, by: &ChunkedArray<StringType>, ) -> ChunkedArray<ListType>
Source§fn extract_all_many(
&self,
pat: &ChunkedArray<StringType>,
) -> Result<ChunkedArray<ListType>, PolarsError>
fn extract_all_many( &self, pat: &ChunkedArray<StringType>, ) -> Result<ChunkedArray<ListType>, PolarsError>
Source§fn extract_groups(
&self,
pat: &str,
dtype: &DataType,
) -> Result<Series, PolarsError>
fn extract_groups( &self, pat: &str, dtype: &DataType, ) -> Result<Series, PolarsError>
extract_groups
only.Source§fn count_matches(
&self,
pat: &str,
literal: bool,
) -> Result<ChunkedArray<UInt32Type>, PolarsError>
fn count_matches( &self, pat: &str, literal: bool, ) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Source§fn count_matches_many(
&self,
pat: &ChunkedArray<StringType>,
literal: bool,
) -> Result<ChunkedArray<UInt32Type>, PolarsError>
fn count_matches_many( &self, pat: &ChunkedArray<StringType>, literal: bool, ) -> Result<ChunkedArray<UInt32Type>, PolarsError>
Source§fn to_lowercase(&self) -> ChunkedArray<StringType>
fn to_lowercase(&self) -> ChunkedArray<StringType>
Source§fn to_uppercase(&self) -> ChunkedArray<StringType>
fn to_uppercase(&self) -> ChunkedArray<StringType>
Source§fn to_titlecase(&self) -> ChunkedArray<StringType>
fn to_titlecase(&self) -> ChunkedArray<StringType>
nightly
only.Source§fn concat(&self, other: &ChunkedArray<StringType>) -> ChunkedArray<StringType>
fn concat(&self, other: &ChunkedArray<StringType>) -> ChunkedArray<StringType>
Source§fn str_reverse(&self) -> ChunkedArray<StringType>
fn str_reverse(&self) -> ChunkedArray<StringType>
string_reverse
only.Source§fn str_slice(
&self,
offset: &Column,
length: &Column,
) -> Result<ChunkedArray<StringType>, PolarsError>
fn str_slice( &self, offset: &Column, length: &Column, ) -> Result<ChunkedArray<StringType>, PolarsError>
Source§fn str_head(&self, n: &Column) -> Result<ChunkedArray<StringType>, PolarsError>
fn str_head(&self, n: &Column) -> Result<ChunkedArray<StringType>, PolarsError>
n
values of the string. Read moreSource§fn str_tail(&self, n: &Column) -> Result<ChunkedArray<StringType>, PolarsError>
fn str_tail(&self, n: &Column) -> Result<ChunkedArray<StringType>, PolarsError>
n
values of the string. Read moreSource§fn str_escape_regex(&self) -> ChunkedArray<StringType>
fn str_escape_regex(&self) -> ChunkedArray<StringType>
strings
only.Source§impl<T, N> Sub<N> for ChunkedArray<T>
impl<T, N> Sub<N> for ChunkedArray<T>
Source§impl<T> Sub for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> Sub for ChunkedArray<T>where
T: PolarsNumericType,
Source§type Output = ChunkedArray<T>
type Output = ChunkedArray<T>
-
operator.Source§fn sub(self, rhs: ChunkedArray<T>) -> <ChunkedArray<T> as Sub>::Output
fn sub(self, rhs: ChunkedArray<T>) -> <ChunkedArray<T> as Sub>::Output
-
operation. Read moreSource§impl<T> TakeChunked for ChunkedArray<T>
impl<T> TakeChunked for ChunkedArray<T>
Source§unsafe fn take_chunked_unchecked<const B: u64>(
&self,
by: &[ChunkId<B>],
sorted: IsSorted,
_allow_sharing: bool,
) -> ChunkedArray<T>
unsafe fn take_chunked_unchecked<const B: u64>( &self, by: &[ChunkId<B>], sorted: IsSorted, _allow_sharing: bool, ) -> ChunkedArray<T>
Source§unsafe fn take_opt_chunked_unchecked<const B: u64>(
&self,
by: &[ChunkId<B>],
_allow_sharing: bool,
) -> ChunkedArray<T>
unsafe fn take_opt_chunked_unchecked<const B: u64>( &self, by: &[ChunkId<B>], _allow_sharing: bool, ) -> ChunkedArray<T>
Source§impl ValueSize for ChunkedArray<StringType>
impl ValueSize for ChunkedArray<StringType>
Source§fn get_values_size(&self) -> usize
fn get_values_size(&self) -> usize
Source§impl<T> VarAggSeries for ChunkedArray<T>
impl<T> VarAggSeries for ChunkedArray<T>
Source§fn var_reduce(&self, ddof: u8) -> Scalar
fn var_reduce(&self, ddof: u8) -> Scalar
ChunkedArray
as a new Series
of length 1.Source§fn std_reduce(&self, ddof: u8) -> Scalar
fn std_reduce(&self, ddof: u8) -> Scalar
ChunkedArray
as a new Series
of length 1.