Varianceif()(聚合函数)

适用于:✅Azure 数据资源管理器Azure MonitorMicrosoft Sentinel

计算 predicate 评估结果为 true 的记录中 Expr 的方差

空值会被忽略,不会纳入计算中。

注意

此函数与 summarize 运算符结合使用。

语法

varianceif(expr, 谓词)

详细了解语法约定

参数

客户 类型​​ 必需 说明
expr string ✔️ 用于方差计算的表达式。
predicate string ✔️ 如果 predicate 评估结果为 true,则会将 expr 计算值加到方差。

返回

返回 predicate 评估结果为 true 的记录中 Expr 的方差。

示例

range x from 1 to 100 step 1
| summarize varianceif(x, x%2 == 0)

输出

varianceif_x
850