Expand description
DataFrame-oriented primitives shared by higher-level crates.
Modules§
- cast
- Type casting primitives for DataFrame values.
- partition_
scan - Partition-aware DataFrame scan primitives.
Structs§
- Exploded
Column - Result of exploding one list column.
Functions§
- dt_
convert_ time_ zone - Convert naive local timestamp micros between fixed-offset time zones.
- dt_day
- Extract UTC day of month from timestamp micros, in the range 1..=31.
- dt_
month - Extract UTC month from timestamp micros, in the range 1..=12.
- dt_
to_ string - Format timestamp micros as UTC RFC3339-like text.
- dt_
weekday - Extract ISO weekday from timestamp micros, where Monday is 1 and Sunday is 7.
- dt_year
- Extract UTC year from timestamp micros.
- explode_
list - Explode one list column into values and source row indexes.
- implode_
by_ group_ lengths - Implode values into nullable lists according to contiguous group lengths.
- list_
contains - Return whether each list contains a non-null needle value.
- list_
join - Join string list elements with a separator.
- list_
len - Return list lengths while preserving null lists.
- str_
contains - Return whether each UTF-8 value matches a regular expression pattern.
- str_
extract - Extract the first regular expression match or capture group from each value.
- str_
len_ chars - Count Unicode scalar values in each UTF-8 value.
- str_
replace - Replace all regular expression matches in each UTF-8 value.
- str_
split - Split each UTF-8 value by a literal separator.
- str_
strip_ chars - Strip characters from both ends of each UTF-8 value.
- str_
to_ lowercase - Convert UTF-8 strings to lowercase while preserving nulls.
- str_
to_ uppercase - Convert UTF-8 strings to uppercase while preserving nulls.
Type Aliases§
- Bool
Column - Nullable boolean column used by core DataFrame namespace primitives.
- List
Column - Nullable list column with nullable elements.
- Timestamp
Micros Column - Nullable timestamp column using microseconds since Unix epoch.
- UInt
Column - Nullable unsigned integer column used by core DataFrame namespace primitives.
- Utf8
Column - Nullable string column used by core DataFrame namespace primitives.