CHISQ.DIST.RT
傳回奇方分佈的 right尾機率。
奇方分佈與奇方測試相關聯。 使用 chi-squared 測試來比較預期 values觀察到的 and。 例如,基因實驗可能會假設 next 一代植物將展示一組特定的色彩。 藉由比較觀察到的結果與預期的結果,您可以決定原始假設是否有效。
語法
CHISQ.DIST.RT(<x>, <deg_freedom>)
參數
術語 | 定義 |
---|---|
x |
您想要 evaluate 散發 value。 |
Deg_freedom |
自由 degrees 的數目。 |
傳回 value
right平方分佈的尾端機率。
言論
If
x
ordeg_freedom
為非數值,則會傳回 error。If
deg_freedom
not 整數,則會四捨五入。If
x
< 0,會傳回 error。If
deg_freedom
< 1 ordeg_freedom
> 10^10,則會傳回 error。在匯出數據行中使用 or 數據列層級安全性 (RLS) 規則時,支援此函式 not 用於 DirectQuery 模式。
例
下列 DAX 查詢,
EVALUATE { CHISQ.DIST.RT(2, 5) }
返回
[Value] |
---|
0.84914503608461 |