尝试使用自动绘图绘制时间序列。 可复制的示例:
library(forecast)
WWWusage %>% ets %>% forecast(h=20) -> fc
autoplot(WWWusage, series="Data") +
autolayer(fc, series="Forecast") +
autolayer(fitted(fc), series="Fitted")
Error: 'coerce' is not an exported object from 'namespace:colorspace'
答案 0 :(得分:0)
尝试将第一个fc实例替换为其data属性:fc $ x
顺便说一句,这适用于其他预测库方法,例如holt(),hw()。
以下对我有用:
library(forecast)
WWWusage %>% ets %>% forecast(h=20) -> fc
autoplot(WWWusage, series="Data") +
autolayer(fc$x, series="Forecast") +
autolayer(fitted(fc), series="Fitted")
有关Forecast()输出属性的文档,请参见https://www.rdocumentation.org/packages/forecast/versions/8.7/topics/forecast