T.DIST

The T.DIST function returns the left-tailed Student's t-distribution.

Syntax

T.DIST(
    x,
    Deg_freedom,
    Cumulative
)

Parameters
  • x: Value for which to calculate the Student's t-distribution.
  • Deg_freedom: Number of degrees of freedom to consider in the distribution.
  • Cumulative: Logical value that determines the form of the function: True returns the cumulative distribution function and False returns the probability density function.
Returned value

The T.DIST function returns a real number.

Examples

We can calculate the value of the Student's t-distribution for x = 3 with 2 degrees of freedom with the following measure:

dist = T.DIST(3, 2, FALSE())

T.DIST function. Example of use
Category
Statistical
Submitted by admin on Thu, 01/17/2019 - 16:04