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 | Description | Performance |
---|---|---|
set degrees of freedom | Creates new instance of TDistribution. |
Method | Description | Performance |
---|---|---|
Probability density function. where Γ denotes the Gamma function. Static probability density function. | ||
cdf | Cumulative distribution function. where Ix is the regularized incomplete beta function, , and t is the parameter of cdf. Static cumulative distribution function. | |
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. |
Property | Description | Performance |
---|---|---|
degrees of freedom | Degrees of freedom of the distribution. | |
mean | Mean of the distribution. | |
median | Median of the distribution. | |
mode | Mode of distribution. | |
kurtosis | Excess Kurtosis of distribution. | |
skewness | Skewness of distribution. | |
variance | Variance of the distribution. | |
standard deviation | Standard deviation of the distribution. |