CHISQ.DIST.RT

Updated on

CHISQ.DIST.RT is a DAX function that returns the right-tailed probability of the chi-squared distribution, useful for chi-squared tests comparing observed and expected values.

Syntax

CHISQ.DIST.RT(
   X,
   Deg_freedom
)
Argument Properties Description
X The value at which you want to evaluate the distribution.
Deg_freedom The number of degrees of freedom.

Return Values

The right-tailed probability of the chi-squared distribution.

Remarks

  • If x or deg_freedom is nonnumeric, an error is returned.

  • If deg_freedom is not an integer, it is rounded.

  • If x < 0, an error is returned.

  • If deg_freedom < 1 or deg_freedom > 10^10, an error is returned.

  • This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.

Example

The following DAX query,

EVALUATE { CHISQ.DIST.RT(2, 5) }

Returns

[Value]
0.84914503608461

Other functions related to CHISQ.DIST.RT are:

Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/dax/chisq-dist-rt-function-dax

2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy