Analisis Deret Waktu dengan R
David S. Matteson
Associate Professor at Cornell University
Model moving average (MA) sederhana:
$ Today = Mean + Noise + Slope * (Yesterday's Noise)$
Lebih formal: 
dengan $ \epsilon_t$ adalah white noise (WN) ber-mean nol.
Tiga parameter:
$ Today = Mean + Noise + Slope * (Yesterday's Noise)$
$$Y_t = \mu + \epsilon_t + \theta\epsilon_{t-1}$$
$Y_t = \mu + \epsilon_t$
Dan $Y_t$ adalah White Noise $(\mu, \sigma_{\epsilon}^2)$
$Today = Mean + Noise + Slope * (Yesterday's Noise)$
$$Y_t = \mu + \epsilon_t + \theta\epsilon_{t-1}$$
Dan proses ${Y_t}$ berkorelasi otomatis
Nilai $\theta$ besar memberi autokorelasi lebih kuat
Nilai $\theta$ negatif menghasilkan deret waktu berosilasi


Hanya autokorelasi lag 1 yang tidak nol untuk model MA.
Analisis Deret Waktu dengan R