Analiza szeregów czasowych w R
David S. Matteson
Associate Professor at Cornell University
Prosty model średniej ruchomej (MA):
$ Today = Mean + Noise + Slope * (Yesterday's Noise)$
Formalnie: 
gdzie $ \epsilon_t$ to biały szum (WN) o średniej zero.
Trzy parametry:
$ Today = Mean + Noise + Slope * (Yesterday's Noise)$
$$Y_t = \mu + \epsilon_t + \theta\epsilon_{t-1}$$
$Y_t = \mu + \epsilon_t$
A $Y_t$ jest białym szumem $(\mu, \sigma_{\epsilon}^2)$
$Today = Mean + Noise + Slope * (Yesterday's Noise)$
$$Y_t = \mu + \epsilon_t + \theta\epsilon_{t-1}$$
A proces ${Y_t}$ jest autokorelowany
Duże wartości $\theta$ oznaczają silniejszą autokorelację
Ujemne wartości $\theta$ dają oscylujące szeregi czasowe


W modelu MA niezerowa jest tylko autokorelacja dla opóźnienia 1.
Analiza szeregów czasowych w R