| fitted.VAR {fable} | R Documentation |
Extracts the fitted values.
## S3 method for class 'VAR' fitted(object, ...)
object |
The time series model used to produce the forecasts |
... |
Additional arguments for forecast model methods. |
A vector of fitted values.
lung_deaths <- cbind(mdeaths, fdeaths) %>% as_tsibble(pivot_longer = FALSE) lung_deaths %>% model(VAR(vars(mdeaths, fdeaths) ~ AR(3))) %>% fitted()