| refit.ETS {fable} | R Documentation |
Applies a fitted ETS model to a new dataset.
## S3 method for class 'ETS' refit( object, new_data, specials = NULL, reestimate = FALSE, reinitialise = TRUE, ... )
object |
The time series model used to produce the forecasts |
new_data |
A |
specials |
(passed by |
reestimate |
If |
reinitialise |
If TRUE, the initial parameters will be re-estimated to suit the new data. |
... |
Additional arguments for forecast model methods. |
lung_deaths_male <- as_tsibble(mdeaths) lung_deaths_female <- as_tsibble(fdeaths) fit <- lung_deaths_male %>% model(ETS(value)) report(fit) fit %>% refit(lung_deaths_female, reinitialise = TRUE) %>% report()