stdev() (聚合函數)
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
使用 Bessel 針對視為樣本的小型數據集,計算整個群組中 expr 的標準偏差。
Null 值會被忽略,且不會納入計算。
對於代表母體的大型數據集,請使用 stdevp() (聚合函數)。
注意
此函式會與 summarize 運算子搭配使用。
公式
此函式會使用下列公式。
語法
stdev(
expr)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
expr | string |
✔️ | 用於標準偏差匯總計算的表達式。 |
傳回
傳回整個群組中 expr 的標準偏差值。
範例
下列範例顯示群組的標準偏差。
range x from 1 to 5 step 1
| summarize make_list(x), stdev(x)
輸出
list_x | stdev_x |
---|---|
[ 1, 2, 3, 4, 5] | 1.58113883008419 |