Learn Before
Simple Exponential Smoothing (SES)
The Simple Exponential Smoothing (SES) method models the next time step as an exponentially weighted linear function of observations at prior time steps.
SES requires a single parameter, called alpha (a), also called the smoothing factor or smoothing coefficient.
This parameter controls the rate at which the influence of the observations at prior time steps decay exponentially. Alpha is often set to a value between 0 and 1. Large values mean that the model pays attention mainly to the most recent past observations, whereas smaller values mean more of the history is taken into account when making a prediction.
The method is suitable for univariate time series without trend and seasonal components.
Below is an example of code implementation

0
3
Tags
Data Science
Related
Autoregression (AR)
Autoregressive Integrated Moving Average (ARIMA)
Moving Average (MR)
Autoregressive Moving Average (ARMA)
Seasonal Autoregressive Integrated Moving Average (SARIMA)
Seasonal Autoregressive integrated Moving Average with Exogenous Regressors (SARIMAX)
Simple Exponential Smoothing (SES)
Holt Winter's Exponential Smoothing (HWES)