R 的時間序列分析
David S. Matteson
Associate Professor at Cornell University
簡單移動平均(MA)模型:
$ Today = Mean + Noise + Slope * (Yesterday's Noise)$
更正式地:
其中 $ \epsilon_t$ 為均值為 0 的白雜訊(WN)。
三個參數:
$ 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 的自我相關不為 0。
R 的時間序列分析