| forecast.ETS {fable} | R Documentation |
Produces forecasts from a trained model.
## S3 method for class 'ETS' forecast( object, new_data, specials = NULL, simulate = FALSE, bootstrap = FALSE, times = 5000, ... )
object |
The time series model used to produce the forecasts |
new_data |
A |
specials |
(passed by |
simulate |
If |
bootstrap |
If |
times |
The number of sample paths to use in estimating the forecast distribution if simulated intervals are used. |
... |
Additional arguments for forecast model methods. |
A list of forecasts.
as_tsibble(USAccDeaths) %>%
model(ets = ETS(log(value) ~ season("A"))) %>%
forecast()