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 模型