| forecast.VAR {fable} | R Documentation |
Produces forecasts from a trained model.
## S3 method for class 'VAR' forecast( object, new_data = NULL, specials = NULL, bootstrap = FALSE, times = 5000, ... )
object |
The time series model used to produce the forecasts |
new_data |
A |
specials |
(passed by |
bootstrap |
If |
times |
The number of sample paths to use in estimating the forecast distribution when |
... |
Additional arguments for forecast model methods. |
A list of forecasts.
lung_deaths <- cbind(mdeaths, fdeaths) %>% as_tsibble(pivot_longer = FALSE) lung_deaths %>% model(VAR(vars(mdeaths, fdeaths) ~ AR(3))) %>% forecast()