kurtosis | R Documentation |
Calculates kurtosis coefficient for given variable (see is.variable
), matrix
or a data.frame
.
kurtosis(x, na.rm = TRUE)
x |
a |
na.rm |
should |
Tenjovic, L. (2000). Statistika u psihologiji - prirucnik. Centar za primenjenu psihologiju.
set.seed(0)
x <- rnorm(100)
kurtosis(x)
kurtosis(matrix(x, 10))
kurtosis(mtcars)
rm(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.