CHISQDIST
Description
Returns the (left-tail) chi square distribution. Depending on the
cumulative
argument, calculates either the probability
density function value or the cumulative distribution function value.
Syntax
CHISQDIST(
x
,
deg_freedom
,
cumulative
)
- x: The value to use when evaluating the distribution.
- deg_freedom: The number of degrees of freedom.
- cumulative: The type of distribution to use. FALSE = probability density function; TRUE = cumulative distribution function.
Example
Formula | Result |
|---|---|
=CHISQDIST(0.5, 1, TRUE) | 0.520499878 |
=CHISQDIST(2, 3, FALSE) | 0.207553749 |
Notes
- This function does the same action as CHISQ.DIST() and CHIDIST().