Click or drag to resize

TDistribution

Student’s t-distribution (or simply the t-distribution) is a continuous probability distribution that arises when estimating the mean of a normally distributed population in situations where the sample size is small and population standard deviation is unknown.

The t-distribution is symmetric and bell-shaped, like the normal distribution, but has heavier tails, meaning that it is more prone to producing values that fall far from its mean. The parameter of this distribution is the number of degrees of freedom ν.

This topic contains the following sections:

Constructor

Constructor

Description

Performance

set degrees of freedom

Creates new instance of TDistribution.

methodTDistribution(Double)

Methods

Method

Description

Performance

pdf

Probability density function.

DTDistribution Pdf

where Γ denotes the Gamma function.

methodPdf(Double)

Static probability density function.

StaticPdf(Double, Double)

cdf

Cumulative distribution function.

DTDistribution Cdf

where Ix is the regularized incomplete beta function, DTDistributionX, and t is the parameter of cdf.

methodCdf(Double)

Static cumulative distribution function.

StaticCdf(Double, Double)

inverse cdf

Inverse cumulative distribution function. Is useful for quantile calculation. Function will return value of random variable such that likelihood for this random variable to occur less than or equal to returned value equal to specified pvalue parameter.

methodInverseCdf(Double)

StaticInverseCdf(Double, Double)

Properties

Property

Description

Performance

degrees of freedom

Degrees of freedom of the distribution.

PropertyDegreesOfFreedom

mean

Mean of the distribution.

DTDistribution Mean

PropertyMean

median

Median of the distribution.

DTDistribution Median

PropertyMedian

mode

Mode of distribution.

DTDistribution Median

PropertyMode

kurtosis

Excess Kurtosis of distribution.

DTDistribution Kurtosis

PropertyKurtosis

skewness

Skewness of distribution.

DTDistribution Skewness

PropertySkewness

variance

Variance of the distribution.

DTDistribution Variance

PropertyVariance

standard deviation

Standard deviation of the distribution.

DTDistribution Std Dev

PropertyStandardDeviation