Set of functions to test the normality of a time series.
Usage
bowmanshenton(data)
doornikhansen(data)
jarquebera(data, k = 0, sample = TRUE)
skewness(data)
kurtosis(data)
Value
A c("JD3_TEST", "JD3")
object (see statisticaltest
for details).
Functions
bowmanshenton()
: Bowman-Shenton testdoornikhansen()
: Doornik-Hansen testjarquebera()
: Jarque-Bera testskewness()
: Skewness testkurtosis()
: Kurtosis test
Examples
x <- rnorm(100) # null
bowmanshenton(x)
#> Value: 4.01702
#> P-Value: 0.1342
doornikhansen(x)
#> Value: 3.720728
#> P-Value: 0.1556
jarquebera(x)
#> Value: 4.581835
#> P-Value: 0.1012
x <- random_t(2, 100) # alternative
bowmanshenton(x)
#> Value: 7.151925
#> P-Value: 0.0280
doornikhansen(x)
#> Value: 7.405346
#> P-Value: 0.0247
jarquebera(x)
#> Value: 8.437488
#> P-Value: 0.0147