Modele ARIMA w R
David Stoffer
Professor of Statistics at the University of Pittsburgh
astsa do prognozowania służy sarima.for()model SARIMA$(0,1,1) \times (0,1,1)_{12}$ jest odpowiedni
sarima.for(log(AirPassengers), n.ahead = 24,
0, 1, 1, 0, 1, 1, 12)

Modele ARIMA w R