Module aggregate
Expand description
Defines aggregations over Arrow arrays.
Functionsยง
- bit_and
- Returns the bitwise and of all non-null input values.
- bit_or
- Returns the bitwise or of all non-null input values.
- bit_xor
- Returns the bitwise xor of all non-null input values.
- bool_
and - Returns true if all non-null input values are true, otherwise false.
- bool_or
- Returns true if any non-null input value is true, otherwise false.
- max
- Returns the maximum value in the array, according to the natural order. For floating point arrays any NaN values are considered to be greater than any other non-null value
- max_
array - Returns the max of values in the array of
ArrowNumericType
type, or dictionary array with value ofArrowNumericType
type. - max_
binary - Returns the maximum value in the binary array, according to the natural order.
- max_
binary_ view - Returns the maximum value in the binary view array, according to the natural order.
- max_
boolean - Returns the maximum value in the boolean array
- max_
string - Returns the maximum value in the string array, according to the natural order.
- max_
string_ view - Returns the maximum value in the string view array, according to the natural order.
- min
- Returns the minimum value in the array, according to the natural order. For floating point arrays any NaN values are considered to be greater than any other non-null value
- min_
array - Returns the min of values in the array of
ArrowNumericType
type, or dictionary array with value ofArrowNumericType
type. - min_
binary - Returns the minimum value in the binary array, according to the natural order.
- min_
binary_ view - Returns the minimum value in the binary view array, according to the natural order.
- min_
boolean - Returns the minimum value in the boolean array.
- min_
string - Returns the minimum value in the string array, according to the natural order.
- min_
string_ view - Returns the minimum value in the string view array, according to the natural order.
- sum
- Returns the sum of values in the primitive array.
- sum_
array - Returns the sum of values in the array.
- sum_
array_ checked - Returns the sum of values in the array.
- sum_
checked - Returns the sum of values in the primitive array.