Prévision en R
Rob J. Hyndman
Professor of Statistics at Monash University
set.seed(3) # Reproductibilité
wn <- ts(rnorm(36)) # Bruit blanc
autoplot(wn) # Tracer !

Le « bruit blanc » est simplement une série chronologique de données iid
ggAcf(wn) +
ggtitle("Sample ACF for white noise")

ggAcf(wn) +
ggtitle("Sample ACF for white noise")

ggAcf(wn) +
ggtitle("Sample ACF for white noise")

ggAcf(wn) +
ggtitle("Sample ACF for white noise")

pigs <- window(pigs, start=1990)
autoplot(pigs/1000) +
xlab("Year") +
ylab("thousands") +
ggtitle("Monthly number of pigs slaughtered in Victoria")

ggAcf(pigs) +
ggtitle("ACF of monthly pigs slaughtered
in Victoria")

ggAcf(pigs) +
ggtitle("ACF of monthly pigs slaughtered
in Victoria")

ggAcf(pigs) +
ggtitle("ACF of monthly pigs slaughtered
in Victoria")

Le test de Ljung-Box examine les h premières autocorrélations ensemble.
Un test significatif (petite valeur p) indique que les données ne sont probablement pas du bruit blanc.
Box.test(pigs, lag = 24, fitdf = 0, type = "Lj")
Box-Ljung test
data: pigs
X-squared = 634.15, df = 24, p-value < 2.2e-16
Prévision en R