CHISQ.DIST is a DAX function that returns the chi-squared distribution, commonly used to study variation in percentages across samples.
Syntax
CHISQ.DIST(
X,
Deg_freedom,
Cumulative
)
Argument | Properties | 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. |