30個の値で構成されるデータは、時系列に格納されtime
ます。
にARIMAモデリングを適用した後time
、forecast
関数を使用して将来の値を予測しました。
model = arima(time, order = c(3,2,1))
prediction = forecast.Arima(model,h=10)
prediction step is not working and showing error
Error in ts(x) : object is not a matrix
上記のように、エラーメッセージが表示されます。しかし、私がするなら
model = arima(time[1:25], order = c(3,2,1))
prediction = forecast.Arima(model,h=10)
できます。なぜそうなのですか?
predict
関数を使用したとき
model = arima(time, order = c(3,2,1))
prediction=predict(model,n.ahead=10)
それも動作します。
どの関数が使用する方、だろうpredict
かforecast
、RでARIMAモデルのために、そして、なぜ?
2
常に使用する言語について言及してください。これは、全体の統計的な世界がR.を使用していることを、まだ真実ではない
—
ニック・コックス