Performs lagged regression as discussed in Chapter 4.
LagReg(input, output, L = c(3, 3), M = 40, threshold = 0,
inverse = FALSE)
Graphs of the estimated impulse response function, the CCF, and the output with the predicted values superimposed.
Estimated coefficients
The output series, the fitted values, and the residuals
input series
output series
degree of smoothing; see spans
in the help file for spec.pgram
.
must be even; number of terms used in the lagged regression
the cut-off used to set small (in absolute value) regression coeffcients equal to zero
if TRUE, will fit a forward-lagged regression
D.S. Stoffer
For a bivariate series, input
is the input series and output
is the output series. The degree of smoothing for the spectral estimate is given by L; see spans
in the help file for spec.pgram
. The number of terms used in the lagged regression approximation is given by M, which must be even. The threshold value is the cut-off used to set small (in absolute value) regression coeffcients equal to zero (it is easiest to run LagReg twice, once with the default threshold of zero, and then again after inspecting the resulting coeffcients and the corresponding values of the CCF). Setting inverse=TRUE will fit a forward-lagged regression; the default is to run a backward-lagged regression. The script is based on code that was contributed by Professor Doug Wiens, Department of Mathematical and Statistical Sciences, University of Alberta.
You can find demonstrations of astsa capabilities at FUN WITH ASTSA.
The most recent version of the package can be found at https://github.com/nickpoison/astsa/.
In addition, the News and ChangeLog files are at https://github.com/nickpoison/astsa/blob/master/NEWS.md.
The webpages for the texts and some help on using R for time series analysis can be found at https://nickpoison.github.io/.