ARIMA Models in R
David Stoffer
Professor of Statistics at the University of Pittsburgh
astsa
package, use sarima.for()
for forecastingSARIMA$(0,1,1) \times (0,1,1)_{12}$ model was appropriate
sarima.for(log(AirPassengers), n.ahead = 24,
0, 1, 1, 0, 1, 1, 12)
ARIMA Models in R