如何从Prophet.plot_components()

时间:2019-09-03 21:04:47

标签: plot facebook-prophet

我有每单位时间疾病病例数的数据,因此我可以预测疫情的爆发。我使用Facebook Prophet的plot_components函数从Prophet允许轻松完成的数据中提取基本趋势:

model = Prophet()
model.fit(df)

future = model.make_future_dataframe(periods=0)
forecast = model.predict(future)

model.plot_components(forecast)

预期会产生我的this情节。

我需要那些xy值来进行分析,但我无法弄清楚。先知的文档没有帮助,也没有深入到github上的源代码。在数字对象上似乎也没有可调用的方法或属性来返回值。

任何想法都将不胜感激!

1 个答案:

答案 0 :(得分:0)

您将其包含在预测数据框中(请选中“每周”列)