## AR 1 process
ar <- numeric(200)
ar[1] <- rnorm(1)
for (i in 2:200)
ar[i] <- 0.5 * ar[i-1] + rnorm(1)
x <- ar[101:200]
## In order to test for serial independence, the first step consists
## in simulating the distribution of the test statistics under
## serial independence for the same sample size, i.e. n=100.
## As we are going to consider lags up to 3, i.e., subsets of
## {1,...,4} whose cardinality is between 2 and 4 containing {1},
## we set lag.max=3. This may take a while...
d <- serialIndepTestSim(100,3)
## The next step consists in performing the test itself:
test <- serialIndepTest(x,d)
## Let us see the results:
test
## Display the dependogram:
dependogram(test,print=TRUE)
## NB: In order to save d for future use, the save function can be used.
Run the code above in your browser using DataLab