Expand description
Helpers for working with arrow
Modulesยง
- arrays ๐
- batches ๐
- compare ๐
- format_
data_ ๐type arrow
hasToString
implemented, but it is way too verbose.
Traitsยง
- Downcast an arrow array to another array, without having to go via
Any
.
Functionsยง
- Return true when arguments are the same within some rounding error.
- Create a sparse list-array out of an array of arrays.
- Create a sparse list-array out of an array of arrays.
- Applies a [
arrow::compute::concat
] kernel to the givenarrays
. - Concatenates the given [
RecordBatch
]es, regardless of their respective schema. - Are two arrays equal, ignoring small numeric differences?
- Extract the element at
idx
from aFixedSizeListArray
. - Applies a filter kernel to the given
array
. - Compact format of an arrow data type.
- Returns true if the given
list_array
is semantically empty. - Returns a new [
RecordBatch
] where all top-level fields are nullable. - Returns a new [[
ListArray
]] with lenentries
. - Returns an iterator with the lengths of the offsets.
- Create a new [
ListArray
] of target length by appending null values to its back. - Create a new [
ListArray
] of target length by appending null values to its front. - Repartitions a [
ListArray
] according to the specifiedlengths
, ignoring previous partitioning. - Given a sparse [
ListArray
] (i.e. an array with a nulls bitmap that contains at least one falsy value), returns a dense [ListArray
] that only contains the non-null values from the original list. - Applies a take kernel to the given
array
. - Convert
[A, B, null, D, โฆ]
into[[A], [B], null, [D], โฆ]
.