John Grando & Alex Low
2/5/19
Time Series Decomposition
Decomposition of data into separate parts
|
|
MAs are used to estimate trend-cycles and are simply an average value over a set time period
|
|
Moving Averages of Moving Averages can even be taken to further smooth the trend. Note, the first MA has been downshifted to a value of 4 (usually m=12 for monthly data) to show a noticable difference between curves.
|
|
Seasonal components can be calculated by averaging the detrended values for that season. For example, with monthly data, the seasonal component for March is the average of all the detrended March values in the data. These seasonal component values are then adjusted to ensure that they add to zero for additive models, and to approximately to m for multiplicative models
| Additive | Multiplicative |
|---|---|
|
|
|
Similar to classical decomposition; however, has many additional steps to account for drawbacks using the classical method.
Seasonal Extraction in ARIMA Time Series. Only works with quarterly and monthly data, and details of methodology beyond the scope of this book.
Seasonal and Trend decomposition using Loess. Has many advantages over other methods which inludes; handling any type of seasonality, changing seasonality over time, trend smoothness control, and robust to outliers. However, it has some disadvantages; only additive decomposition, difficulty with calendar variations.
Forecasts can be easily made using the decomposed components which can be rewritten as follows:
| Additive | Multiplicative |
|---|---|
|
\( y_{t}=\hat{S_{t}} + \hat{A_{t}} \) \( \hat{A_{t}}=\hat{T_{t}} + \hat{R_{t}} \) |
\( y_{t}=\hat{S_{t}} \times \hat{A_{t}} \) \( \hat{A_{t}}=\hat{T_{t}} \times \hat{R_{t}} \) |
Then, the seasonal component and seasonally adjusted component can be forecast separately. Note, It is usually assumed that the seasonal component is unchanging, or changing extremely slowly, so it is forecast by simply taking the last year of the estimated component.
The Bureau of Labor Statistics uses seasonal adjustment when it publishes unemployment figures. It adjusts the data using the SEATS method. Below we show the decomposition of the raw data using the traditional (multiplicative method) and SEATS method.
|
|
Inflation data, based on the Consumer Price Index, is another data point that changes by season. Again it adjusts the data using the SEATS method but instead we look below at the X11 method as an example.
|
|