series_pearson_correlation()
適用対象: ✅Microsoft Fabric✅Azure データ エクスプローラー✅Azure Monitor✅Microsoft Sentinel
2つの数列の入力のピアソン相関係数を計算します。
参照: ピアソン相関係数。
構文
series_pearson_correlation(
series1,
series2)
構文規則について詳しく知る。
パラメーター
件名 | タイプ | Required | 説明 |
---|---|---|---|
series1, series2 | dynamic |
✔️ | 相関係数を計算するための数値の配列。 |
返品
2つの入力間の計算されたピアソン相関係数。 数値以外の要素または存在しない要素 (異なるサイズの配列) は、 null
結果を生成します。
例
range s1 from 1 to 5 step 1
| extend s2 = 2 * s1 // Perfect correlation
| summarize s1 = make_list(s1), s2 = make_list(s2)
| extend correlation_coefficient = series_pearson_correlation(s1, s2)
出力
s1 | s2 | correlation_coefficient |
---|---|---|
[1,2,3,4,5] | [2,4,6,8,10] | 1 |