Module polars_core::chunked_array::ops
source · Expand description
Traits for miscellaneous operations on ChunkedArray
Modules
- zip
zip_with
Structs
- ObjectTakeRandom
object
Enums
- One of the three arguments allowed in unchecked_take
Traits
- Aggregation operations
- Fastest way to do elementwise operations on a
ChunkedArray<T>when the operation is cheaper than branching due to null checking - Apply kernels on the arrow array chunks in a ChunkedArray.
- Cast
ChunkedArray<T>toChunkedArray<N> - ChunkCumAgg
cum_agg - Create a new ChunkedArray filled with values at that index.
- Explode/ flatten a List or Utf8 Series
- Replace None values with a value
- Filter values by a boolean mask.
- Fill a ChunkedArray with one value.
- Find local minima/ maxima
- Quantile and median aggregation
- Reverse a
ChunkedArray<T> - ChunkRollApply
rolling_windowThis differs from ChunkWindowCustom and ChunkWindow by not using a fold aggregator, but reusing aSerieswrapper and callingSeriesaggregators. This likely is a bit slower than ChunkWindow - Create a
ChunkedArraywith new values by index or by boolean mask. Note that these operations clone data. This is however the only way we can modify at mask or index level as the underlying Arrow arrays are immutable. - Shift the values of a
ChunkedArrayby a number of periods. - Sort operations on
ChunkedArray. - Fast access by index.
- Get unique values in a
ChunkedArray - Variance and standard deviation aggregation.
- Combine two
ChunkedArraybased on some predicate. - Create a type that implements a faster
TakeRandom. - IsFirst
is_firstMask the first unique values astrue - IsIn
is_inCheck if element is member of list array - IsLast
is_lastMask the last unique values astrue - RepeatBy
repeat_byRepeat the valuesntimes. - StrConcat
concat_strConcat the values into a string array. - Random access
Type Definitions
- Dummy type, we need to instantiate all generic types, so we fill one with a dummy.