Concept

Holt Winter's Exponential Smoothing (HWES)

The Holt Winter’s Exponential Smoothing (HWES) also called the Triple Exponential Smoothing method models the next time step as an exponentially weighted linear function of observations at prior time steps, taking trends and seasonality into account.

In addition to the alpha and beta smoothing factors, a new parameter is added called gamma (g) that controls the influence on the seasonal component.

As with the trend, the seasonality may be modeled as either an additive or multiplicative process for a linear or exponential change in the seasonality.

Additive Seasonality: a linear seasonality. Multiplicative Seasonality: an exponential seasonality.

The method is suitable for univariate time series with trend and/or seasonal components.

Below is an example of code implementation

Image 0

0

3

Updated 2020-03-18

Tags

Data Science