使用数据 UKDriverDeaths
尝试使用 Holt-Winters 预测函数和 ggplot()。
基本上再现了ggplot中的数据。
data('UKDriverDeaths')
past <- window(UKDriverDeaths, end = c(1982, 12))
hw <- HoltWinters(past)
pred <- predict(hw, n.ahead = 10)
plot(hw, pred, ylim = range(UKDriverDeaths))
lines(UKDriverDeaths)
我想根据实际数据展示 holt winters 从 1983 年开始的预测。2个问题是:
1) ggplot 不理解 ts 数据。
2)使用 HoltWinters() 使用 ts 数据,而不是 zoo(日期或 xts)。我需要在切割点显示预测和实际数据(通常 + geom_line(aes()) 这样做)
如果置信区间是可能的,那就太好了。
非常感谢,完全卡住了