你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
variance()(聚合函数)
适用于:✅Microsoft Fabric✅Azure 数据资源管理器Azure Monitor✅Microsoft✅ Sentinel
将某组视为样本,计算该组内 expr 的方差。
空值会被忽略,不会纳入计算中。
使用以下公式:
注意
此函数与 summarize 运算符结合使用。
语法
variance(
expr)
详细了解语法约定。
参数
客户 | 类型 | 必需 | 说明 |
---|---|---|---|
expr | real |
✔️ | 用于方差计算的表达式。 |
返回
返回组中 expr 的方差值。
示例
range x from 1 to 5 step 1
| summarize make_list(x), variance(x)
输出
list_x | variance_x |
---|---|
[ 1, 2, 3, 4, 5] | 2.5 |