你好我使用包預測來做時間序列預測。 我想知道如何在最終預測圖上取消一系列。有了預測軟件包,我不知道如何取消註冊我的系列。這裏有一個例子:在使用包預測時取消一個時間序列
library(forecast)
data <- AirPassengers
data <- log(data) #with this AirPassengers data not nessesary to LOG but with my private data it is...because of some high picks...
ARIMA <- arima(data, order = c(1, 0, 1), list(order = c(12,0, 12), period = 1)) #Just a fake ARIMA in this case...
plot(forecast(ARIMA, h=24)) #but my question is how to get a forecast plot according to the none log AirPassenger data
所以圖像被記錄下來。我想要有相同的ARIMA模型,但是沒有數據。
指數函數是對數函數的逆函數。 – ndoogan 2013-03-28 04:02:14
@ndoogan這是真的,但沒有用。 – 2013-03-28 04:30:15