search for: mykurtosis

Displaying 1 result from an estimated 1 matches for "mykurtosis".

Did you mean: mkurtosis
1999 Jul 28
1
skewness, kurtosis
Dear R-Users and Developpers, Currently R does not include functions to compute the skewness and kurtosis. I programmed it myself in the following way, but probably *real* programmers/statisticians can do that better: mykurtosis <- function(x) { m4 <- mean((x-mean(x))^4) kurt <- m4/(sd(x)^4)-3 kurt } myskewness <- function(x) { m3 <- mean((x-mean(x))^3) skew <- m3/(sd(x)^3) skew } I would also suggest to include the quartile-coefficient of skewness (sorry if this translation from German is not co...