我prophet
在 R ( https://facebook.github.io/prophet/ ) 中使用,我想在预测情节预测的顶部覆盖变化点。这是我的代码(df
是一个包含日期(列ds
)和值(列y
)的数据框:
m <- prophet(df)
future <- make_future_dataframe(m, periods=5)
forecast <- predict(m, future)
plot(m, forecast, xlab="Day", ylab="Counts")
i = 0
while (i <= length(m$changepoints.t)) {
tmp <- m$changepoints[i]
abline(v=as.POSIXct(tmp), col='red')
i = i + 1
}
但是,变化点线永远不会出现。我仔细检查了更改点是否在主图的范围内,并且我as.Date
尝试as.POSIXct
了abline
. 在这两种情况下都没有错误,但也没有变化点线。有人可以帮忙吗?