forecast.NNETAR | R Documentation |
Produces forecasts from a trained model.
## S3 method for class 'NNETAR' forecast( object, new_data, specials = NULL, simulate = TRUE, bootstrap = FALSE, times = 1000, ... )
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(airmiles) %>% model(nn = NNETAR(box_cox(value, 0.15))) %>% forecast(times = 10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.