美好的一天,
我正在R中建立一个auto.arima预测。我能够成功完成预测,但是结果未显示日期。
预测结果:
因此,如果您查看x轴,则会在此处看到以周期为单位的年份。我希望能够导出具有实际日期的数据
我用
library(“ tseries”)
库(“预测”)
library(“ xts”)
代码:
Pulsedata$date <- as.Date(Pulsedata$date,format = "%d-%b-%y")
PD_ts <- msts(Pulsedata$Call_volume, start = c(2016, 01), end = c(2018,
365), seasonal.periods=c(365))
DPD_ts <- decompose(PD_ts, "multiplicative")
AA <- auto.arima(ts(PD_ts,frequency=365),D=1)
Myforecast <- forecast(AA,h=365)
plot(Myforecast)
我尝试过:
任何日期
扫动
截止日期
润滑
setDT