| tidy.ARIMA {fable} | R Documentation |
Returns the coefficients from the model in a tibble format.
## S3 method for class 'ARIMA' tidy(x, ...)
x |
An object to be converted into a tidy |
... |
Additional arguments to tidying method. |
The model's coefficients in a tibble.
USAccDeaths %>% as_tsibble() %>% model(arima = ARIMA(log(value) ~ pdq(0, 1, 1) + PDQ(0, 1, 1))) %>% tidy()