PERCENTILE_CONT
Computes a percentile value based on a continuous distribution of the column input.
Last updated
Was this helpful?
Computes a percentile value based on a continuous distribution of the column input.
Last updated
Was this helpful?
fraction: The fraction/percentile value to compute. The value for this must be a numeric literal in the range of 0 to 1 inclusive and represents a percentage.
order_by_expression: The expression to sort and compute the percentile. You can only provide one expression in the ORDER BY clause. By default, the sort order is ascending (ASC).
Examples
This function computes a percentile based on a continuous distribution of the column value. The result is interpolated and may not be equal to any of the actual values in the column. This information was originally provided via .
This function is used with only numeric data types in Spice. NULL
values in the data set are ignored. However, passing NULL
as fraction or as order_by_expression will cause an error.