Skip to content

Analysis and Visualization of COVID-19 Impact and Response in Europe.

License

Notifications You must be signed in to change notification settings

sanjaycg486/COVID-19

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Analysis and Visualization of COVID-19 Impact and Response in Europe.

Python dash Flask plotly pandas numpy GitHub last commit License: MIT

As part of the Master Course Interactive Data Visualization (SS-2020) at Paderborn University we need to do a mini-group project on the topic "COVID-19" pandemic.

Group Members: Varun Golani, Lalith Sagar, Sanjay Gupta.

We used the following data source to perform our task:

Dataset: Our World in Data (University of Oxford)

Table of Contents

  1. Tasks
  2. How To Run
  3. Results
  4. Acknowledgements
  5. License

Tasks

  1. Line graph for Multivariate Data plot (Varun Golani): This plot is designed to analyze the effectiveness of the measures imposed by the government in EU countries. With the addition of a location dropdown, you can now select a specific country to view its data. The date filter allows you to narrow down the time period for the analysis.

  2. Parallel Coordinates plot (Lalith Sagar): This plot provides insights into how the hospital systems (i.e., number of beds) in EU countries affect the death rate and the pattern between median age, population, and death rate. The location dropdown allows you to select a specific country, and the date filter lets you choose a specific time period for the analysis.

  3. Pie Chart plot (Varun Golani): This plot shows the percentage of tests carried out by each country compared to the whole of Europe. The more tests performed in a country, the more reliable the numbers (i.e., total cases) are. With the location dropdown, you can now select a specific country to view its data. The date filter allows you to narrow down the time period for the analysis.

  4. Choropleth map plot (Sanjay Gupta): This plot visualizes the death rate of COVID-19. The map of EU countries is colored based on the death rate. The location dropdown and date filter allow you to view the death rate for a specific country during a specific time period.

By providing a location dropdown and date filter, we have made the visualization more interactive and user-friendly. Users can select a specific country and time period for a more focused analysis. This makes our visualization a powerful tool for understanding and responding to the COVID-19 pandemic.

Note: Please refer to the COVID-19-Concept-paper.pdf, COVID-19-Basic-Information-Sheet.pdf, and COVID-19-presentation.mp4 for more details.

How To Run

This project uses Conda for managing environments and dependencies. The environment.yml file contains the list of all dependencies needed to run the project.

Follow these steps to run the project:

  1. Install Conda: If you haven't installed Conda yet, you can download it from here. Follow the instructions for your specific operating system.

  2. Create a Conda environment: Navigate to the project directory in your terminal and run the following command to create a new Conda environment based on the environment.yml file:

    conda env create -f environment.yml

    This will create a new Conda environment with the name specified in the environment.yml file.

  3. Activate the Conda environment: Use the following command to activate the newly created environment:

    conda activate covid-19
  4. Run the project: Now that the environment is set up and activated, you can run the project. If it's a Python script, use the following command:

    python COVID-19.py

Remember to deactivate the Conda environment once you're done by using the conda deactivate command.

Note: To view the dash output, just open the link http://127.0.0.1:8050/ in the browser after running the COVID-19.py file.

Results

The following images show the results of the COVID-19 Analysis in Europe in dashboard:

Dashboard Image 1

Dashboard Image 2

Acknowledgements

This app was motivated by a Dash template from this repository.

License

This project is licensed under the MIT License - see the LICENSE file for details.