normality_tests | R Documentation |
Set of functions to test the normality of a time series.
bowmanshenton(data)
doornikhansen(data)
jarquebera(data, k = 0, sample = TRUE)
skewness(data)
kurtosis(data)
data |
data being tested. |
k |
number of degrees of freedom to be subtracted if the input time series is a series of residuals. |
sample |
boolean indicating if unbiased empirical moments should be computed. |
A c("JD3_TEST", "JD3")
object (see statisticaltest
for details).
bowmanshenton()
: Bowman-Shenton test
doornikhansen()
: Doornik-Hansen test
jarquebera()
: Jarque-Bera test
skewness()
: Skewness test
kurtosis()
: Kurtosis test
x <- rnorm(100) # null
bowmanshenton(x)
doornikhansen(x)
jarquebera(x)
x <- random_t(2, 100) # alternative
bowmanshenton(x)
doornikhansen(x)
jarquebera(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.