powered by
Produces forecasts from a trained model.
# S3 method for VAR forecast( object, new_data = NULL, specials = NULL, bootstrap = FALSE, times = 5000, ... )
A list of forecasts.
The time series model used to produce the forecasts
A tsibble containing future information used to forecast.
tsibble
(passed by fabletools::forecast.mdl_df()).
fabletools::forecast.mdl_df()
If TRUE, then forecast distributions are computed using simulation with resampled errors.
TRUE
The number of sample paths to use in estimating the forecast distribution when bootstrap = TRUE.
bootstrap = TRUE
Additional arguments for forecast model methods.
lung_deaths <- cbind(mdeaths, fdeaths) %>% as_tsibble(pivot_longer = FALSE) lung_deaths %>% model(VAR(vars(mdeaths, fdeaths) ~ AR(3))) %>% forecast()
Run the code above in your browser using DataLab