नोट
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप साइन इन करने या निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
Applies to:
Databricks Runtime 18.0 and later
Estimates the normalized rank (0.0 to 1.0) of a given value in a float KLL sketch.
Syntax
kll_sketch_get_rank_float ( sketch, value )
Arguments
sketch: ABINARYexpression containing a serializedFLOATKLL sketch.value: AFLOATexpression orARRAY<FLOAT>of values to find ranks for.
Returns
- If value is
FLOAT: returns aDOUBLEbetween 0.0 and 1.0 representing the normalized rank. - If value is
ARRAY<FLOAT>: returnsARRAY<DOUBLE>with ranks for each value.
Notes
- The rank represents the fraction of values in the sketch that are less than or equal to the given value.
- Returns 0.0 if all sketch values are greater than the input value.
- Returns 1.0 if all sketch values are less than or equal to the input value.
Common error conditions
Examples
> WITH sketch_data AS (
SELECT kll_sketch_agg_float(score) AS sketch
FROM VALUES (1.5), (2.3), (3.7) AS T(score)
)
SELECT kll_sketch_get_rank_float(sketch, 2.5) FROM sketch_data
0.66