Skip to content

Instantly share code, notes, and snippets.

@erykml
Created December 8, 2020 23:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erykml/3649245dff03608eeb3241b83547711a to your computer and use it in GitHub Desktop.
Save erykml/3649245dff03608eeb3241b83547711a to your computer and use it in GitHub Desktop.
prophet_model = Prophet()
prophet_model.fit(df_train)
future_df = prophet_model.make_future_dataframe(periods=test_length)
preds_df_1 = prophet_model.predict(future_df)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment