forecast.ARIMA | R Documentation |
Produces forecasts from a trained model.
## S3 method for class 'ARIMA' forecast( object, new_data = NULL, specials = NULL, bootstrap = FALSE, times = 5000, ... )
object |
The time series model used to produce the forecasts |
new_data |
A |
specials |
(passed by |
bootstrap |
If |
times |
The number of sample paths to use in estimating the forecast distribution when |
... |
Additional arguments for forecast model methods. |
A list of forecasts.
USAccDeaths %>% as_tsibble() %>% model(arima = ARIMA(log(value) ~ pdq(0, 1, 1) + PDQ(0, 1, 1))) %>% forecast()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.