用R语言forecast和fitted函数进行时间序列预测和提取拟合值的时候出现同样的频率问题:
m1.x1=arima(x1,order=c(3,1,0),seasonal=list(order=c(0,1,1),period=12),method="ML");m1.x1
fitted(m1.x1)
forecast(m1.x1,12)
Error in .cbind.ts(list(e1, e2), c(deparse(substitute(e1))[1L], deparse(substitute(e2))[1L]), :
not all series have the same frequency
用predict函数可以预测出来,但是我需要提取拟合值,反复尝试又出现了一样的错误,不知道是哪里频率不一样
想知道为什么会产生这种错误,感觉原数据也没有问题,求指教