| tidy.VAR {fable} | R Documentation |
Returns the coefficients from the model in a tibble format.
## S3 method for class 'VAR' tidy(x)
x |
An object to be converted into a tidy |
The model's coefficients in a tibble.
lung_deaths <- cbind(mdeaths, fdeaths) %>% as_tsibble(pivot_longer = FALSE) lung_deaths %>% model(VAR(vars(mdeaths, fdeaths) ~ AR(3))) %>% tidy()