Acf
computes (and by default plots) an estimate of the autocorrelation function of a (possibly multivariate) time series. Function Pacf
computes (and by default plots) an estimate of the partial autocorrelation function of a (possibly multivariate) time series. Function Ccf
computes the cross-correlation or cross-covariance of two univariate series.Acf(x, lag.max = NULL, type = c("correlation", "covariance", "partial"), plot = TRUE, na.action = na.contiguous, demean=TRUE, ...)
Pacf(x, lag.max=NULL, plot=TRUE, na.action=na.contiguous, ...)
Ccf(x, y, lag.max=NULL, type=c("correlation","covariance"), plot=TRUE, na.action=na.contiguous, ...)
taperedacf(x, lag.max=NULL, type=c("correlation", "partial"), plot=TRUE, calc.ci=TRUE, level=95, nsim=100, ...)
taperedpacf(x, ...)
correlation
" (the default), "covariance
" or "partial
".TRUE
(the default) the resulting acf, pacf or ccf is plotted.na.contiguous
. Useful alternatives are na.pass
and na.interp
.TRUE
, confidence intervals for the ACF/PACF estimates are calculated.Acf
, Pacf
and Ccf
functions return objects of class "acf" as described in acf
from the stats package. The taperedacf
and taperedpacf
functions return objects of class "mpacf".acf
, pacf
and ccf
functions. The main differences are that Acf
does not plot a spike at lag 0 when type=="correlation"
(which is redundant) and the horizontal axes show lags in time units rather than seasonal units.The tapered versions implement the ACF and PACF estimates and plots described in Hyndman (2015), based on the banded and tapered estimates of autocovariance proposed by McMurry and Politis (2010).
McMurry, T. L., & Politis, D. N. (2010). Banded and tapered estimates for autocovariance matrices and the linear process bootstrap. Journal of Time Series Analysis, 31(6), 471-482.
acf
, pacf
, ccf
, tsdisplay
Acf(wineind)
Pacf(wineind)
## Not run:
# taperedacf(wineind, nsim=50)
# taperedpacf(wineind, nsim=50)
# ## End(Not run)
Run the code above in your browser using DataLab