acf.plot(z, layout=c(nser,nser), conf.int=T, type="h", ask=F, ...)
Since the individual plots are drawn using subplot, the axis coordinates are all relative (to a 1 by 1 square); hence, functions like locator or abline may do strange things. Use locator() to find out what the true coordinates are, if these are needed to add text, lines, or such.
The confidence interval is computed as 2/sqrt(n.used) where n.used is the number of nonmissing observations in the time series. The interval can only be provided when n.used is a component of z. Note that this interval is valid only if z$acf represents the correlation function or the partial autocorrelation function, it is meaningless when z$acf is the covariance function.
acf.plot(acf.lynx, conf.int=F) acf.plot(bonds.ar <- ar(bonds.yield)) pacf.lynx <- acf(lynx, 36, "partial", plot=F) acf.plot(pacf.lynx, conf.int=T, type="l")