smooth.ES.model_name

property ES.model_name: str

modelName()).

Returns the complete model specification including ETS type, ARIMA orders, and X indicator for regressors.

Returns:

Full model name, e.g., ‘ETS(AAN)’, ‘ETS(AAA)+ARIMA(1,1,1)’, or ‘ETSX(MAN)’ when regressors are included.

Return type:

str

Raises:

ValueError – If the model has not been fitted yet.

Examples

>>> model = ADAM(model="AAN")
>>> model.fit(y)
>>> name = model.model_name  # 'ETS(AAN)'
Type:

Return full model name string (R