##Covid-19 Plotly Dashboard Project
View the Application Here: https://covid-dash-udemy.herokuapp.com/
Introduction Video:
How to Build Maps Tutorial Video
Learn More on Django, Plotly & Dash on my Full Course:
- Graph 1: Find Cases, Recoveries & Deaths on the map bubble chart.
- Graph 2: See our global growth rate & notice the data from china in red. It isnt because China is amazing its not growing because China's Numbers are unreliable.
- Graph 1: Scale the Case Rate & update the graph bellow. See what areas are affected & How many cases near you by hovering over the map.
- Graph 2: Show the current cases in the USA with a layered bar chart to represent each states growth contributions.
- Graph 1: Select a date from the dropdown menu 3/27/2020 -> Now & fetch on the dataset in the table.
- Graph 2: Bar Graph Representing the contributions by country Table Dataset: Dataset being fetched by selecting a date.
fetch_today.main(date: str, value:int, usa_only:bool): returns today's values only
fetch_to_date.main(date: str, value:int, usa_only:bool): returns (selected date) -> Yesterday's Values. f'https://covid19.mathdro.id/api/daily/{date}'
fetch_historic.main(): returns https://covid19.mathdro.id/api/daily
-
Create an virtual env
- Check if you have a virtual env
virtualenv --version
- (Not Installed) Dont see a version number? run
sudo pip install virtualenv
- (Installed) Make a folder within the highest file of the project
mkdir ~/env
- run
virtualenv ~/env/my_new_app
- cd into the bin folder
cd ~/env/my_new_app/bin
- activate the env
source activate
- Check if you have a virtual env
-
pip install -r requirements.txt
-
Run the individual Files