Kurtosis in Mathematical Statistics
Kurtosis
- Given a random variable with mean and variance , the kurtosis of is defined as follows:
- For data , with sample mean and sample variance , sample kurtosis is obtained as follows:
Standard with Normal Distribution
Normal distribution has a kurtosis of regardless of its parameters, and this is often used as a standard. It’s common to use and despite the bias, to intuitively determine whether a probability distribution or data has fatter or thinner tails than a normal distribution.
Explanation
Kurtosis is calculated based on the 4th moment, and it measures how peaked a distribution function of a random variable is. Positive kurtosis indicates a flatter shape whereas negative kurtosis indicates a more peaked one.
The screenshot above shows the probability density function of a normal distribution and the calculation from drawing samples. The kurtosis of a normal distribution is , and it was calculated to be close to in reality.
The screenshot above shows the probability density function of a Cauchy distribution and the calculation from drawing samples. The Cauchy distribution does not have a defined mean or kurtosis, but the sample kurtosis was calculated to be close to . Compared to the probability density function of a normal distribution, it has fatter tails on both ends, aligning with the explanation provided above.
Kurtosis is a Measure of Tails
The term Kurtosis originates from the Greek word κυρτός, meaning curved or arching1, and the translation as kurtosis might seem to refer to the pointedness of a peak, but subsequent research and intuition show that its actual value is more closely related to ‘how fat the tails of the distribution are’.
Code
Here is the R code used for generating the illustrated figures.
set.seed(150421)
win.graph(6,4)
x<-rnorm(1000)
plot(dnorm,xlim=c(-3,3),ylim=c(0,0.4),
main=paste0("N(0,1)의 첨도 : ",round(kurtosis(x),4)))
abline(h=0)
win.graph(6,4)
y<-rcauchy(1000)
plot(dcauchy,xlim=c(-3,3),ylim=c(0,0.4),
main=paste0("C(0,1)의 첨도 : ",round(kurtosis(y),4)))
abline(h=0)