Learn R Programming

rpgm (version 1.1.2)

jarquebera: The Jarque-Bera Test for Normality

Description

This test, based on the skewness and the kurtosis of the vector, computes the p-value associated to the normality of the distribution.

Usage

jarquebera(x)

Arguments

x

numeric, vector of independent and identical random variables

Value

The p-value associated to the test : 1-pchisq(J, 2).

Details

The Jarque-Bera test is based of the convergence, if the vector is i.i.d. normal random variables, of $$\texttt{skewness}(x) \rightarrow \mathcal{N}(0, 6) ; \texttt{kurtosis}(x) \rightarrow \mathcal{N}(3, 24)$$ and moreover, both are asymptotically independent. Then, we have the statistic $$J = \frac{n}{6}\left(S^2 + \frac{(K-3)^2}{4}\right) \rightarrow \chi^{2}(2)$$

References

https://en.wikipedia.org/wiki/Jarque

See Also

http://pgm-solutions.com/packages

Examples

Run this code
# NOT RUN {
jarquebera(rpgm.rnorm(10^5))
# }

Run the code above in your browser using DataLab