forecast.ARIMA {fable} | R Documentation |
Forecast a model from the fable package
Description
Produces forecasts from a trained model.
Usage
## S3 method for class 'ARIMA'
forecast(
object,
new_data = NULL,
specials = NULL,
bootstrap = FALSE,
times = 5000,
...
)
Arguments
object |
A model for which forecasts are required. |
new_data |
A tsibble containing the time points and exogenous regressors to produce forecasts for. |
specials |
(passed by |
bootstrap |
If |
times |
The number of sample paths to use in estimating the forecast distribution when |
... |
Other arguments passed to methods |
Value
A list of forecasts.
Examples
USAccDeaths %>%
as_tsibble() %>%
model(arima = ARIMA(log(value) ~ pdq(0, 1, 1) + PDQ(0, 1, 1))) %>%
forecast()
[Package fable version 0.3.4 Index]