Functions
T.DIST
Student's t CDF/PDF
Try it
When to use it
When should I use T.DIST?
Use T.DIST when you need the Student's t cumulative distribution function (CDF) or probability density function (PDF) for a given x value and degrees of freedom — for example, to find the probability that a t-statistic falls below a threshold in a one-tailed test.
Used in
Syntax
T.DIST(x,df,cumulative)Examples
=T.DIST(1.96,60,FALSE) // => 0.059847906211418805
=T.DIST(-1.98,2,FALSE) // => 0.06941821226899947
=T.DIST(1.96,60,TRUE) // => 0.9726775351317355