Created
March 12, 2020 21:31
-
-
Save sammyrulez/1c50d96977bb707ad8e21237e040fb6e to your computer and use it in GitHub Desktop.
COVID-19 forecast
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
m = Prophet() | |
m.fit(df) | |
future = m.make_future_dataframe(periods=50) | |
forecast = m.predict(future) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment