jarquebera | R Documentation |
Performs Jarque-Bera goodness of fit test for normality.
row_jarquebera(x)
col_jarquebera(x)
x |
numeric matrix. |
row_jarquebera(x)
- Jarque-Bera test on rows.
col_jarquebera(x)
- Jarque-Bera test on columns.
Results should be the same as running moments::jarque.test(x)
on every row (or column) of x
a data.frame where each row contains the results of Jarque-Bera
test performed on the corresponding row/column of x.
Each row contains the following information (in order):
1. obs - number of observations
2. skewness - skewness
3. kurtosis - kurtosis
4. df - degrees of freedom
5. statistic - chi-squared statistic
6. pvalue - p-value
Karolis Koncevičius
shapiro.test()
col_jarquebera(iris[,1:4])
row_jarquebera(t(iris[,1:4]))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.