Applies to: CELONIS 4.0 CELONIS 4.2 CELONIS 4.3 CELONIS 4.4
Description
Calculates the quantile of the specified column for each element of the given parent table.
Like the regular QUANTILE operator, the column can either be an INT, FLOAT or DATE column. The data type of the result is the same as the input column data type. The given quantile has to be a float number between 0 (same as PU_MIN) and 1.0 (same as PU_MAX). If no value in the child table exists for the element in the parent table (either because all values of the child table column are filtered out, or because no corresponding value exists in the first place), NULL will be returned.
Вычисляет квантиль указанного столбца для каждого элемента данной родительской таблицы.
Как и обычный оператор QUANTILE, столбец может быть столбцом INT, FLOAT или DATE. Тип данных результата совпадает с типом данных входного столбца. Данный квантиль должен быть числом с плавающей запятой между 0 (таким же, как PU_MIN) и 1,0 (таким же, как PU_MAX).
Если в элементе родительской таблицы не существует значения в дочерней таблице (либо из-за того, что все значения столбца дочерней таблицы отфильтрованы, либо из-за отсутствия соответствующего значения в первую очередь), будет возвращено значение NULL.
Syntax
PU_QUANTILE ( parent_table, child_table.column, quantile [, filter_expression] ) |
Examples