Rで学ぶ時系列分析
David S. Matteson
Associate Professor at Cornell University
単純移動平均(MA)モデル:
$ Today = Mean + Noise + Slope * (Yesterday's Noise)$
数式で表すと: 
ここで $ \epsilon_t$ は平均ゼロのホワイトノイズ(WN)です。
パラメータは3つです:
$ Today = Mean + Noise + Slope * (Yesterday's Noise)$
$$Y_t = \mu + \epsilon_t + \theta\epsilon_{t-1}$$
$Y_t = \mu + \epsilon_t$
このとき $Y_t$ はホワイトノイズ $(\mu, \sigma_{\epsilon}^2)$ になります。
$Today = Mean + Noise + Slope * (Yesterday's Noise)$
$$Y_t = \mu + \epsilon_t + \theta\epsilon_{t-1}$$
このとき過程 ${Y_t}$ は自己相関を持ちます。
$\theta$ が大きいほど自己相関が強くなります。
$\theta$ が負の場合、時系列は振動的になります。


MA モデルでは、ラグ 1 の自己相関のみゼロでない値をとります。
Rで学ぶ時系列分析