and any reason why PERCENTILE supports floats but PERCENTILEEST works on longs/ints only ?
j
Jackie
11/27/2019, 1:25 AM
PERCENTILEEST uses the QuantileDigest data structure to estimate the percentile, which only takes integral numbers. floating numbers will be converted to integral numbers. For floating numbers, you can use PERCENTILETDIGEST instead.
a
Alex
11/27/2019, 4:36 AM
When I tried it it didn’t convert, just failed with exception.