[...] Transform Array¶
are_arrays_equal
: Return true ifarray1
=array2
array_contains
: Returnstrue
ifvalue
is in arrayarr
else returnsfalse
array_intersect
: Returns the intersection of two arrays.array_union
: Returns the union of two arrays.benford_distance
: Calculate the distance from Benford's Law for givenvalues
.distinct_values
: Return distinct valuesfind_greater_value
: Return theoffset
(zero-based index) of the firstvalue
inarr
wherevalue >= x
find_lower_value
: Return theoffset
(zero-based index) of the firstvalue
inarr
wherevalue <= x
find_value
: Return the firstoffset
(zero-based index) ofvalue
in arrayarr
frequent_values
: Returnsfrequent_values
among array ofvalues
get_value
: Return the firstvalue
with a keysearch_key
fromkey_value_items
last_value
: Return last value of arraymax_value
: Return max value of arraymedian_value
: Return median value of arraymin_max_scaler
: Performs min-max scaling on an array.min_value
: Return min value of arraypercentile_value
: Returns percentile of an array with percentile a float in range [0, 1].rare_values
: Returnsrare_values
among array ofvalues
remove_value
: Return an array with all values exceptvalue
.sort_values
: Return sorted array (ascending)sort_values_desc
: Return sorted array (descending)sum_values
: Return the sum of array valuesz_scores
: Computez_scores