T.DIST is a DAX function that returns the Student’s left-tailed t-distribution.
Syntax
T.DIST(
X,
Deg_freedom,
Cumulative
)
Argument | Properties | Description |
---|---|---|
X | The numeric value at which to evaluate the distribution. | |
Deg_freedom | An integer indicating the number of degrees of freedom. | |
Cumulative | A logical value that determines the form of the function. If cumulative is TRUE, T.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function. |