预测v7& ggplot2图形添加适合自动曝光的线

时间:2018-03-06 11:18:53

标签: r ggplot2 forecasting

我正在浏览Rob J Hyndman的教程,这里是the link for the tutorial,我的问题是如何在预测图中添加拟合线,例如;

library(forecast)
library(ggplot2)
fc <- forecast(fdeaths)
autoplot(fc)

我现在需要在上面的图中添加fitted(fc),我该怎么做?

1 个答案:

答案 0 :(得分:2)

这是另一个没有附加包的解决方案:

fit <- data.frame(data=as.matrix(fitted(fc)), date=time(fitted(fc)))
autoplot(fc) + geom_line(data = fit,aes(date,data), col = "red")

您可以将ts转换为可以使用普通ggplot命令的数据框。然后,您只需添加该行。 我意识到如果没有加载包ggfortify我的解决方案