R/kurtosis.R
kurtosis.Rd
It obtains the value of the kurtosis for a normally distributed variable. The result is similar to SAS.
kurtosis(x)
a numeric vector
The kurtosis of x
skewness
library(agricolae) x<-c(3,4,5,2,3,4,5,6,4,NA,7) kurtosis(x)#> [1] -0.1517996# value is -0.1517996