Skip to content

Heatdh/Dashboard-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dashboard-py

Interactive covid Dashboard that displays different graphs based on the user's selection .

Getting started

Make sure you have the package manager pip

Running the app

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

Note

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)

The data at the beginning of the project were dated as 03/03/2021

License and copyright

© Technical Universtiy Of Munich -- Python for Engineering Data Analysis - from Machine Learning to Visualization

About

Interactive Dashboard

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages