
Last chance! 50% off unlimited learning
Sale ends in
"acf"
.
"plot"(x, ci = 0.95, type = "h", xlab = "Lag", ylab = NULL, ylim = NULL, main = NULL, ci.col = "blue", ci.type = c("white", "ma"), max.mfrow = 6, ask = Npgs > 1 && dev.interactive(), mar = if(nser > 2) c(3,2,2,0.8) else par("mar"), oma = if(nser > 2) c(1,1.2,1,1) else par("oma"), mgp = if(nser > 2) c(1.5,0.6,0) else par("mgp"), xpd = par("xpd"), cex.main = if(nser > 2) 1 else par("cex.main"), verbose = getOption("verbose"), ...)
"acf"
.ci
is zero or
negative.x
indicating how many rows and columns of plots should be put on one
page, using par(mfrow = c(m,m))
.TRUE
, the user is asked before a new
page is started.par(*)
, by default adjusted to use smaller than
default margins for multivariate x
only.
acf
which calls plot.acf
by default.
require(graphics)
z4 <- ts(matrix(rnorm(400), 100, 4), start = c(1961, 1), frequency = 12)
z7 <- ts(matrix(rnorm(700), 100, 7), start = c(1961, 1), frequency = 12)
acf(z4)
acf(z7, max.mfrow = 7) # squeeze onto 1 page
acf(z7) # multi-page
Run the code above in your browser using DataLab