Skip to content

Commit

Permalink
Update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
prabathbr committed Jul 29, 2020
1 parent fbc1825 commit b696f9e
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
# COVID-19 country-wise trend forcasting with Facebook Prophet

A simple Python script (Jupyter Notebook) to forcast COVID-19 daily cases using Facebook Prophet.
A simple Python script (Jupyter Notebook) to forcast COVID-19 daily cases for a given country using Facebook Prophet and "Our World in Data" data source (continuously up-to-date).

# Inital Parameters
## Inital Parameters
Please set initial paramerters as required.

Set data source : data_source = 'https://covid.ourworldindata.org/data/owid-covid-data.csv'
Select Country : show_country = 'Spain'
Adjusting trend flexibility : trend_flexibility = 1.0
Set number of forcasting days : days_forcasting = 90
1. Set data source : data_source = 'https://covid.ourworldindata.org/data/owid-covid-data.csv'
1. Select Country : show_country = 'Spain'
1. Adjusting trend flexibility : trend_flexibility = 1.0
1. Set number of forcasting days : days_forcasting = 90

# Requirements
Facebook Prophet : "install -c conda-forge fbprophet"
Plotly : "conda install -c plotly plotly"
Pandas : "conda install -c conda-forge pandas"
Matplotlib : "conda install -c conda-forge matplotlib"
## Requirements
1. Facebook Prophet : "install -c conda-forge fbprophet"
1. Plotly : "conda install -c plotly plotly"
1. Pandas : "conda install -c conda-forge pandas"
1. Matplotlib : "conda install -c conda-forge matplotlib"

## Credits
1. "Our World in Data" and its respective authors for providing up-to date data at https://github.com/owid/covid-19-data/tree/master/public/data
1. Facebook, Inc. and its affiliates for "Facebook Prophet" library at https://github.com/facebook/prophet
1. Authors and affiliates of all other libraries and technologies used in this script.

## References
Facebook Prophet : https://facebook.github.io/prophet/docs/quick_start.html#python-api
Expand Down

0 comments on commit b696f9e

Please sign in to comment.