Main Content

Time Series Decomposition

Time series decomposition involves separating a time series into several distinct components. There are three components that are typically of interest:

  • Tt, a deterministic, nonseasonal secular trend component. This component is sometimes restricted to being a linear trend, though higher-degree polynomials are also used.

  • St, a deterministic seasonal component with known periodicity. This component captures level shifts that repeat systematically within the same period (e.g., month or quarter) between successive years. It is often considered to be a nuisance component, and seasonal adjustment is a process for eliminating it.

  • It, a stochastic irregular component. This component is not necessarily a white noise process. It can exhibit autocorrelation and cycles of unpredictable duration. For this reason, it is often thought to contain information about the business cycle, and is usually the most interesting component.

There are three functional forms that are most often used for representing a time series yt as a function of its trend, seasonal, and irregular components:

  • Additive decomposition, where

    yt=Tt+St+It.

    This is the classical decomposition. It is appropriate when there is no exponential growth in the series, and the amplitude of the seasonal component remains constant over time. For identifiability from the trend component, the seasonal and irregular components are assumed to fluctuate around zero.

  • Multiplicative decomposition, where

    yt=TtStIt.

    This decomposition is appropriate when there is exponential growth in the series, and the amplitude of the seasonal component grows with the level of the series. For identifiability from the trend component, the seasonal and irregular components are assumed to fluctuate around one.

  • Log-additive decomposition, where

    logyt=Tt+St+It.

    This is an alternative to the multiplicative decomposition. If the original series has a multiplicative decomposition, then the logged series has an additive decomposition. Using the logs can be preferable when the time series contains many small observations. For identifiability from the trend component, the seasonal and irregular components are assumed to fluctuate around zero.

You can estimate the trend and seasonal components by using filters (moving averages) or parametric regression models. Given estimates T^t and S^t, the irregular component is estimated as

I^t=ytT^tS^t

using the additive decomposition, and

I^t=yt(T^tS^t)

using the multiplicative decomposition.

The series

ytT^t

(or yt/T^t using the multiplicative decomposition) is called a detrended series.

Similarly, the series ytS^t (or yt/S^t) is called a deseasonalized series.

See Also

| | |

Related Topics