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.

有三个功能形式最常en used for representing a time seriesytas a function of its trend, seasonal, and irregular components:

  • Additive decomposition, where

    y t = T t + S t + I t .

    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

    y t = T t S t I t .

    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

    log y t = T t + S t + I t .

    这是乘法分解的替代方法。如果原始序列具有乘法分解,则记录的系列具有加性分解。当时间序列包含许多小观测值时,使用日志可以最好。为了识别趋势成分,假定季节性和不规则成分在零左右波动。

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 = y t T ^ t S ^ t

using the additive decomposition, and

I ^ t = y t ( T ^ t S ^ t )

using the multiplicative decomposition.

The series

y t T ^ t

(or y t / T ^ t using the multiplicative decomposition) is called adetrendedseries.

Similarly, the series y t S ^ t (or y t / S ^ t ) is called adeseasonalizedseries.

Related Examples

More About