CHISQ.DIST DAX Function (Statistical)
Returns the chi-squared distribution. The chi-squared distribution is commonly used to study variation in the percentage of something across samples, such as the fraction of the day people spend watching television.
Syntax
Parameter | Attributes | Description |
---|---|---|
X |
The value at which you want to evaluate the distribution. |
|
Deg_freedom |
The number of degrees of freedom. |
|
Cumulative |
A logical value that determines the form of the function. If cumulative is TRUE, CHISQ.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function. |
Return values
Returns the chi-squared distribution.
Remarks
If any argument is nonnumeric, CHISQ.DIST returns the #VALUE! error value.
If x is negative, CHISQ.DIST returns the #NUM! error value.
If deg_freedom is not an integer, it is truncated.
If deg_freedom < 1 or deg_freedom > 10^10, CHISQ.DIST returns the #NUM! error value.
Related functions
Other related functions are:
Last update: Feb 25, 2021 » Contribute » Show contributors
Contributors: Alberto Ferrari, Marco Russo
MSDN documentation: https://docs.microsoft.com/en-us/dax/chisq-dist-function-dax