14
我想要適合季節性分解系列的ARIMA模型。但是,當我嘗試execure如下:「來自CSS的非平穩季節性AR部分」中的錯誤R
fit = arima(diff(series), order=c(1,0,0),
seasonal = list(order = c(1, 0, 0), period = NA))
它給了我以下錯誤:
Error in arima(diff(series), order = c(1, 0, 0), seasonal = list(order = c(1, : non-stationary seasonal AR part from CSS
什麼是錯的,什麼是錯誤的意思嗎?
這給了我下面的錯誤可以更好地估計 非限定有限差分值[1]' – mihsathe
我無法複製您的錯誤,我懷疑它與您的數據有關。上面的代碼(現在已更新爲包含人造數據集)可以工作 –
先生,您可以檢查數據。 http://mihirsathe.com/mihir/STI/STI/drugs/index.html 季節性分解部分是我試圖模擬和預測的 – mihsathe