Prophet: Can prophet deal with hourly data?

Created on 17 Mar 2017  ·  5Comments  ·  Source: facebook/prophet

I have hourly electric load data from 2011 to 2013 and I want to predict the next 3 days hourly data. What should I do using prophet?

image

Most helpful comment

Please refer to #29. Support for hourly data will be included in next releases.

All 5 comments

In python, when you call the function 'make_future_dataframe',you can set the parameter 'freq' to 'H' and 'periods' to 72.Like the following:
future = m.make_future_dataframe(freq='H',periods=72)
forecasts = m.predict(future)

@wujushan
thks! I can use your method to predict hourly data,but the result seems to be really weird.
This is the power of Jan 1st to Jan 3th in 2013
image
but my result of prediction is something like this:
image
Is it possible this prophet can not fit the hourly data? because Daily data in area of load forecasting has a strong cyclical.

Please refer to #29. Support for hourly data will be included in next releases.

@jeslago Thank you! Looking forward to it!

@wangyifan1004
Hi !
How did you plot the hourly graph you attached on top ?
a005fa98-0b28-11e7-8d52-c75fd32f9871

Was this page helpful?
0 / 5 - 0 ratings