smooth.ES.is_combined

property ES.is_combined: bool

Return True if model is a combination of multiple models.

Combined models are created using “C” in the model string (e.g., “CCC”, “CCN”, “ACA”). The combination uses IC weights to combine fitted values and forecasts from all models in the pool.

Returns:

True if the model is a weighted combination of multiple models, False otherwise.

Return type:

bool

Examples

>>> model = ADAM(model="CCC", lags=[1])
>>> model.fit(y)
>>> model.is_combined  # True