generate.mdl_vtl_df | R Documentation |
Use a fitted model to simulate future data with similar behaviour to the response.
## S3 method for class 'mdl_vtl_df'
generate(x, new_data = NULL, h = NULL, bootstrap = FALSE, times = 1, ...)
x |
A mable. |
new_data |
Future data needed for generation (should include the time index and exogenous regressors) |
h |
The simulation horizon (can be used instead of |
bootstrap |
If |
times |
The number of replications. |
... |
Additional arguments |
Innovations are sampled by the model's assumed error distribution.
If bootstrap
is TRUE
, innovations will be sampled from the model's residuals.
A vital object with simulated values.
Rob J Hyndman and Mitchell O'Hara-Wild
aus_mortality |>
dplyr::filter(State == "Victoria") |>
model(lc = LC(Mortality)) |>
generate(times = 3, bootstrap = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.