make_future_dataframe with "freq" parameter #1383
Replies: 2 comments
-
Hi, |
Beta Was this translation helpful? Give feedback.
0 replies
-
@mixcheck do you still have that problem? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
thank you for your development time-series python library.
I want to forecast with freq=MS.
I make neuralprophet model below. My data is monthly frequency data (2020-01-01, 2020-02-01 ... )
m.fit(all_data, epochs=1000, freq='MS')
future = m.make_future_dataframe(all_data, periods=730) # or future = m.make_future_dataframe(all_data, periods=24)
forecast = m.predict(future)
but when I use make_future_dataframe, It does not forecast 2 years.
plz help me...
Beta Was this translation helpful? Give feedback.
All reactions