Supported in: Batch
Returns the approximate percentile of the expression which is the smallest value in the ordered expression values (sorted from least to greatest) such that no more than percentage of expression values is less than the value or equal to that value.
Expression categories: Aggregate
Output type: Array<Numeric> | Byte | Decimal | Double | Float | Integer | Long | Short
Argument values:
values
Given input table:
values |
---|
2 |
4 |
3 |
Outputs: 3
Argument values:
values
Given input table:
values |
---|
2 |
4 |
3 |
5 |
1 |
Outputs: [ 2, 3, 4 ]
Argument values:
values
Given input table:
values |
---|
null |
null |
null |
Outputs: null
Argument values:
values
Given input table:
values |
---|
null |
1 |
3 |
Outputs: 1