Extracts the fitted values.
# S3 method for class 'VAR'
fitted(object, ...)
Arguments
- object
A model for which forecasts are required.
- ...
Other arguments passed to methods
Value
A vector of fitted values.
Examples
lung_deaths <- cbind(mdeaths, fdeaths) %>%
as_tsibble(pivot_longer = FALSE)
lung_deaths %>%
model(VAR(vars(mdeaths, fdeaths) ~ AR(3))) %>%
fitted()
#> Error in dim(data) <- dim: invalid first argument, must be vector (list or atomic)