Modelli ARIMA in R
David Stoffer
Professor of Statistics at the University of Pittsburgh

astsa
library(astsa)
plot(jj, main = "Utile per azione trimestrale Johnson & Johnson", type = "c")
text(jj, labels = 1:4, col = 1:4)

library(astsa)
plot(globtemp, main = "Deviazioni della temperatura globale", type= "o")

library(xts)
plot(sp500w, main = "Rendimenti settimanali S&P 500")

Regressione: $Y_i = \beta X_i + \epsilon_i$, dove $\epsilon_i$ è rumore bianco
Rumore bianco:
AutoRegressione: $X_t = \phi X_{t-1} + \epsilon_t \ $ ($\epsilon_t$ è rumore bianco)
Media Mobile: $\epsilon_t = W_t + \theta W_{t-1} \ $ ($W_t$ è rumore bianco)
ARMA: $X_t = \phi X_{t-1} + W_t + \theta W_{t-1} \ $
Modelli ARIMA in R