p=18493
本文我们使用4个时间序列模型对每周的温度序列建模。第一个是通过auto.arima获得的,然后两个是SARIMA模型,最后一个是Buys-Ballot方法。...model1=auto.arima(Y)
acf(residuals(model1),120)
我们将这个模型保存在工作空间中,然后查看其预测。...让我们在这里尝试一下SARIMA
arima(Y,order = c(0,0,0),
seasonal = list(order = c(1,0,0)))
然后让我们尝试使用季节性单位根...Z=diff(Y,52)
arima(Z,order = c(0,0,1),
seasonal = list(order = c(0,0,1)))
然后,我们可以尝试Buys-Ballot模型...我们发现权重最大的模型是Buys Ballot模型。