R로 배우는 ARIMA 모델
David Stoffer
Professor of Statistics at the University of Pittsburgh
astsa 패키지에서는 예측에 sarima.for()를 사용합니다SARIMA$(0,1,1) \times (0,1,1)_{12}$ 모형이 적절하다고 판단했습니다
sarima.for(log(AirPassengers), n.ahead = 24,
0, 1, 1, 0, 1, 1, 12)

R로 배우는 ARIMA 모델