Bootstrap tests for skewness, kurtosis, and normality
An R package for studentized double-bootstrap and non-studentized single-bootstrap inference under unspecified short or long memory.
SKN provides autoregressive-sieve bootstrap tests for symmetry, mesokurtosis, and moment conditions associated with normality in a stationary univariate time series. The procedures accommodate antipersistence, short memory, and long memory without requiring the memory parameter to be estimated first.
| Primary function | SKNtest() |
|---|---|
| Test family | Sample skewness, robust skewness, excess kurtosis, and combined normality |
| Default route | Studentized statistic with a double bootstrap |
| Alternative route | Non-studentized statistic with a single bootstrap |
| Authors | Charisios Grivas, Zacharias Psaradakis, and Marián Vávra |
| Contributors | Alex Toft Gregersen and Lisa Rijkhoff |
One interface, two bootstrap routes
The studentized route is the package default. Set studentized = FALSE to select the computationally lighter single-bootstrap route.
library(SKN)
data("NileMin", package = "longmemo")
result <- SKNtest(
NileMin,
B1 = 1000,
B2 = 200,
crit = "AIC",
studentized = TRUE
)
resultOne procedure across memory regimes
The autoregressive sieve approximates the dependence structure with a finite-order autoregression. The same testing framework can therefore be used under antipersistence, short memory, or long memory without first selecting a memory regime.