R/Box.test.2.R

Defines functions Box.test.2

Documented in Box.test.2

Box.test.2 <- function(x, nlag, type = c("Box-Pierce", "Ljung-Box"), fitdf = 0, decim=8) {
 Box.test.inv = function(lag1, x, type = c("Box-Pierce", "Ljung-Box"), fitdf = 0) {
   stats::Box.test(x, lag1, type = c("Box-Pierce", "Ljung-Box"), fitdf = fitdf)$p.value
 }
 x <- as.vector(x)
 nlag <- as.matrix(nlag)
 aa <- round(apply(nlag, 1, Box.test.inv, x), digits = decim)
 bb <- cbind(as.integer(nlag), as.matrix(aa))
 colnames(bb) <- c("Retard", "p-value")
 bb
}

Try the caschrono package in your browser

Any scripts or data that you put into this service are public.

caschrono documentation built on Nov. 2, 2023, 5:16 p.m.