statsmodels.tsa.holtwinters.Holt.initial_values

Holt.initial_values(initial_level=None, initial_trend=None, force=False)

Compute initial values used in the exponential smoothing recursions.

Parameters:
initial_level{float, None}

The initial value used for the level component.

initial_trend{float, None}

The initial value used for the trend component.

forcebool

Force the calculation even if initial values exist.

Returns:
initial_levelfloat

The initial value used for the level component.

initial_trend{float, None}

The initial value used for the trend component.

initial_seasonslist

The initial values used for the seasonal components.

Notes

Convenience function the exposes the values used to initialize the recursions. When optimizing parameters these are used as starting values.

Method used to compute the initial value depends on when components are included in the model. In a simple exponential smoothing model without trend or a seasonal components, the initial value is set to the first observation. When a trend is added, the trend is initialized either using y[1]/y[0], if multiplicative, or y[1]-y[0]. When the seasonal component is added the initialization adapts to account for the modified structure.


Last update: Mar 18, 2024