| estimate_kurtosis | R Documentation |
Estimate the kurtosis of a numeric distribution.
estimate_kurtosis(x, na_rm = TRUE)
x |
Numeric vector. |
na_rm |
Logical value. If |
The function computes the moment-based kurtosis
\frac{n \sum_i (x_i - \bar{x})^4}
{\left(\sum_i (x_i - \bar{x})^2\right)^2}
Missing values are removed by default.
This returns the usual kurtosis, not excess kurtosis. A normal distribution
has kurtosis close to 3.
A numeric value giving the estimated kurtosis.
Other data analysis:
acf_vec(),
estimate_acf(),
estimate_mode(),
estimate_pacf(),
estimate_skewness(),
pacf_vec(),
summarise_data(),
summarise_split(),
summarise_stats()
x <- c(1, 2, 3, 4, 5, NA)
estimate_kurtosis(x)
estimate_kurtosis(x, na_rm = TRUE)
set.seed(123)
y <- rnorm(100)
estimate_kurtosis(y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.