forecast.NNETAR {fable} | R Documentation |
Forecast a model from the fable package
Description
Produces forecasts from a trained model.
Usage
## S3 method for class 'NNETAR'
forecast(
object,
new_data,
specials = NULL,
simulate = TRUE,
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 |
simulate |
If |
bootstrap |
If |
times |
The number of sample paths to use in producing the forecast distribution. Setting |
... |
Other arguments passed to methods |
Value
A list of forecasts.
Examples
as_tsibble(airmiles) %>%
model(nn = NNETAR(box_cox(value, 0.15))) %>%
forecast(times = 10)