snowflake.snowpark.functions.dp_interval_high¶
- snowflake.snowpark.functions.dp_interval_high(aggregated_column: Union[snowflake.snowpark.column.Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.48.0/src/snowflake/snowpark/_functions/scalar_functions.py#L914-L935)¶
Returns the high end of the confidence interval for a differentially private aggregate. This function is used with differential privacy aggregation functions to provide the upper bound of the confidence interval for the aggregated result.
- Parameters:
aggregated_column (ColumnOrName) – The result of a differential privacy aggregation function.
- Returns:
The high end of the confidence interval for the differentially private aggregate.
- Return type:
Example: