Interactive covid Dashboard that displays different graphs based on the user's selection .
Make sure you have the package manager pip
first clone the repository and open the directory location in your terminal.
To clone using https use
git clone https://github.com/Heatdh/Dashboard-py.git
Create and activate a new virtual environment (not necessary but recommended):
This can differs for each machine (try adding py -m in case this command doesn't work)
On Windows
py -m venv <name_of_virtualenv>
//activate it
<name_of_virtualenv>\Scripts\activate.bat
on linux
python3 -m venv <name_of_virtualenv>
source <name_of_virtualenv>/bin/activate
Install the requirements:
pip install -r requirements.txt
Run the app:
python main.py
open the provided address on your browser
The original datas were provided by RKI as an xlsx file and these were cleaned and the sheets were divied and some are converted into csv using :
import pandas as pd
data_xls = pd.read_excel(<Path>, dtype=str, index_col=None)
data_xls.to_csv(<Path + csv extension >, encoding='utf-8', index=False)
© Technical Universtiy Of Munich -- Python for Engineering Data Analysis - from Machine Learning to Visualization