Created
December 8, 2020 23:10
-
-
Save erykml/3649245dff03608eeb3241b83547711a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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