Skip to main content

Exponential Smoothing

Exponential smoothingis a rule of thumb technique for smoothing time series data using the exponential window function. Whereas in the simple moving average the past observations are weighted equally, exponential functions are used to assign exponentially decreasing weights over time. It is an easily learned and easily applied procedure for making some determination based on prior assumptions by the user, such as seasonality. Exponential smoothing is often used for analysis of time-series data.

Exponential smoothing is one of many window functions commonly applied to smooth data in signal processing, acting as low-pass filters to remove high frequency noise. This method is preceded by Poisson's use of recursive exponential window functions in convolutions from the 19th century, as well as Kolmogorov and Zurbenko's use of recursive moving averages from their studies of turbulence in the 1940s.

Exponential smoothing refers to the use of an exponentially weighted moving average (EWMA) to "smooth" a time series. If you have some time seriesxt, you can define a new time series stthat is a smoothed version ofxt.

st=αxt+(1−α)st-1

  1. Basic exponential smoothing

  2. Double exponential smoothing

  3. Triple exponential smoothing

https://en.wikipedia.org/wiki/Exponential_smoothing

https://www.vividcortex.com/blog/exponential-smoothing-for-time-series-forecasting

Holt Winters (basic forecasting) / Triple exponential smoothing

Holt-Winters forecasting is a way to model and predict the behavior of a sequence of values over time - a time series. Holt-Winters is one of the most popular forecasting techniques for time series. It's decades old, but it's still ubiquitous in many applications, including monitoring, where it's used for purposes such as anomaly detection and capacity planning.

Holt-Winters is a model of time series behavior. Forecasting always requires a model, and Holt-Winters is a way to model three aspects of the time series: a typical value (average), a slope (trend) over time, and a cyclical repeating pattern (seasonality). Holt-Winters uses exponential smoothing to encode lots of values from the past and use them to predict "typical" values for the present and future.

https://www.vividcortex.com/blog/holt-winters-forecasting-simplified

https://grisha.org/blog/2016/01/29/triple-exponential-smoothing-forecasting