xregExpander | R Documentation |
Function expands the provided matrix or vector of variables, producing
values with lags and leads specified by lags
variable.
xregExpander(xreg, lags = c(-frequency(xreg):frequency(xreg)),
silent = TRUE, gaps = c("auto", "NAs", "zero", "naive", "extrapolate"))
xreg |
Vector / matrix / data.frame, containing variables that need
to be expanded. In case of vector / matrix it is recommended to provide
|
lags |
Vector of lags / leads that we need to have. Negative values mean lags, positive ones mean leads. |
silent |
If |
gaps |
Defines how to fill in the gaps in the data. |
This function could be handy when you want to check if lags and leads
of a variable influence the dependent variable. Can be used together
with xregDo="select"
in adam, es,
ces and ssarima. All the missing values
in the beginning and at the end of lagged series are substituted by
mean forecasts produced using adam.
ts
matrix with the expanded variables is returned.
Ivan Svetunkov, ivan@svetunkov.com
es, stepwise
# Create matrix of two variables, make it ts object and expand it
x <- cbind(rnorm(100,100,1),rnorm(100,50,3))
x <- ts(x,frequency=12)
xregExpander(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.