Skip to content

Instantly share code, notes, and snippets.

@sammyrulez
Created March 12, 2020 21:31
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 sammyrulez/1c50d96977bb707ad8e21237e040fb6e to your computer and use it in GitHub Desktop.
Save sammyrulez/1c50d96977bb707ad8e21237e040fb6e to your computer and use it in GitHub Desktop.
COVID-19 forecast
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