Syntax
TDIST( <number>, <number>; <boolean>)
Description
Returns student t-distribution at a given value x for a certain number of degrees of freedom.
...
Returns the student t density function or the cumulative distribution function for the t distribution. This function is frequently used used to measure the degree of diversity between two data sets.
...
- x: The value at which to evaluate the distribution (NUMERIC)
- df: The number of degrees of freedom (NUMERIC)
- Cumulative: Constant indicating the form of the function. If TRUE, then the cumulative distribution function is used. If FALSE, then the probability mass function is used. (BOOLEAN)
...