|
6.
Process or Product Monitoring and Control
6.4. Introduction to Time Series Analysis 6.4.4. Univariate Time Series Models
|
|||
| There are a number of approaches to modeling time series. We outline a few of the most common approaches below. | |||
| Trend, Seasonal, Residual Decompositions |
One approach is to decompose the time series into a trend, seasonal,
and residual component.
Triple exponential smoothing is an example of this approach. Another example, called seasonal loess, is based on locally weighted least squares and is discussed by Cleveland (1993). We do not discuss seasonal loess in this handbook. |
||
| Frequency Based Methods |
Another approach, commonly used in scientific and engineering
applications, is to analyze the series in the frequency domain.
An example of this approach in modeling a sinusoidal
type data set is shown in the
beam deflection case
study. The spectral
plot is the primary tool for the frequency analysis of time
series.
Detailed discussions of frequency-based methods are included in Bloomfield (1976), Jenkins and Watts (1968), and Chatfield (1996). |
||
| Autoregressive (AR) Models |
A common approach for modeling univariate time series is the
autoregressive (AR) model:
AR models can be analyzed with one of various methods, including standard linear least squares techniques. They also have a straightforward interpretation. |
||
| Moving Average (MA) Models |
Another common approach for modeling univariate time series models
is the moving average (MA) model:
T hat is, a moving average model is essentially a linear regression of the current value of the series against the random shocks of one or more prior values of the series. The random shocks at each point are assumed to come from the same distribution, typically a normal distribution, with constant location and scale. The distinction in this model is that these random shocks are propogated to future values of the time series. Fitting the MA estimates is more complicated than with AR models because the error terms depend on the model fitting. This means that iterative non-linear fitting procedures need to be used in place of linear least squares. MA models also have a less obvious interpretation than AR models. Given the more difficult estimation and interpretation of MA models, the obvious question is why are they used instead of AR models? In the standard regression situation, the error terms, or random shocks, are assumed to be independent. That is, the random shocks at the ith observation only affect that ith observation. However, in many time series this assumption is not valid since the random shocks are propogated to future values of the time series. Moving average models accommodate the random shocks in previous values of the time series in estimating the current value of the time series. Note, however, that the error terms after the model is fit should be independent and follow the standard assumptions for a univariate process. |
||
| Box-Jenkins Approach |
Box and Jenkins popularized an approach that combines the moving
average and the autoregressive approaches in the book
"Time Series Analysis: Forecasting
and Control" (Box and Jenkins, 1970).
Although both autoregressive and moving average approaches were already known (and were originally investigated by Yule), the contribution of Box and Jenkins was in developing a systematic methodology for identifying and estimating models that could incorporate both approaches. This makes Box-Jenkins models a powerful class of models. The next several sections will discuss these models in detail. |
||