您好,我使用包预测来进行时间序列预测。我想知道如何在最终预测图上取消记录系列。使用预测包,我不知道如何取消记录我的系列。这是一个例子:
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 模型,但没有记录数据。