quantilesExactLow
Introduced in: v20.8.0 Exactly computes multiple quantiles of a numeric data sequence at different levels simultaneously. For an even number of elements at level0.5 it returns the lower of the two middle values.
This function is equivalent to quantileExactLow but allows computing multiple quantile levels in a single pass, which is more efficient than calling individual quantile functions.
Syntax
level— Levels of quantiles. One or more constant floating-point numbers from 0 to 1. We recommend usinglevelvalues in the range of[0.01, 0.99].Float*
expr— Expression over the column values resulting in numeric data types,Date,DateTimeorDateTime64.(U)Int*orFloat*orDecimal*orDateorDateTimeorDateTime64
Array((U)Int*) or Array(Float*) or Array(Decimal*) or Array(Date) or Array(DateTime) or Array(DateTime64)
Examples
Computing multiple exact low quantiles
Query
Response