Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
1401Dev authored Jan 9, 2023
1 parent 4b34f40 commit a723d7e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,30 @@
# Exploratory COVID Data Analysis
This is an Exploratory COVID Data Analysis project

Queries:
1. Likelihood of dying if you contract COVID in the USA
Method: by finding the death percentage = (total_deaths/total_cases)*100
Result: We found that even though there were fewer cases (55) on 2020-03-02, the death percentage was the highest (~11%).

- What percentage of the population got COVID in the USA
Method: by finding the infected percentage = (total_cases/population)*100
Result: We found that most US citizens were infected in September (for 2022) and December (for 2021).

- Countries with the highest infection rate compared to population size
Method: by finding the infected percentage
Result: We found that Faroe Island had the highest infected percentage (65.5%) while North Korea had the least.

- Countries with the highest death counts
Method: using the MAX function
Result: USA, Brazil, India, Russia, and Mexico

- Continents with the highest death counts
Method: Similarly, just group by the continent
Result: North America, South America, Asia, Europe, Africa and Oceania

- Global number
Method: by finding the death percentage
Result: on 2020-02-24 the world has seen the highest death percentage (~28%)



0 comments on commit a723d7e

Please sign in to comment.