combination_model {fabletools} | R Documentation |
Combination modelling
Description
Combines multiple model definitions (passed via ...
) to produce a model
combination definition using some combination function (cmbn_fn
). Currently
distributional forecasts are only supported for models producing normally
distributed forecasts.
Usage
combination_model(..., cmbn_fn = combination_ensemble, cmbn_args = list())
Arguments
... |
Model definitions used in the combination. |
cmbn_fn |
A function used to produce the combination. |
cmbn_args |
Additional arguments passed to |
Details
A combination model can also be produced using mathematical operations.
Examples
library(fable)
library(tsibble)
library(tsibbledata)
# cmbn1 and cmbn2 are equivalent and equally weighted.
aus_production %>%
model(
cmbn1 = combination_model(SNAIVE(Beer), TSLM(Beer ~ trend() + season())),
cmbn2 = (SNAIVE(Beer) + TSLM(Beer ~ trend() + season()))/2
)
# An inverse variance weighted ensemble.
aus_production %>%
model(
cmbn1 = combination_model(
SNAIVE(Beer), TSLM(Beer ~ trend() + season()),
cmbn_args = list(weights = "inv_var")
)
)
[Package fabletools version 0.4.2 Index]