| generate.NNETAR {fable} | R Documentation |
Simulates future paths from a dataset using a fitted model. Innovations are
sampled by the model's assumed error distribution. If bootstrap is TRUE,
innovations will be sampled from the model's residuals. If new_data
contains the .innov column, those values will be treated as innovations.
## S3 method for class 'NNETAR' generate(x, new_data, specials = NULL, bootstrap = FALSE, ...)
x |
A fitted model. |
new_data |
A |
specials |
(passed by |
bootstrap |
If |
... |
Additional arguments for forecast model methods. |
as_tsibble(airmiles) %>% model(nn = NNETAR(box_cox(value, 0.15))) %>% generate()