https://github.com/1401dev/exploratory-covid-data-analysis
https://github.com/1401dev/exploratory-covid-data-analysis
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/1401dev/exploratory-covid-data-analysis
- Owner: 1401Dev
- Created: 2022-09-24T20:33:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-09T23:23:34.000Z (over 3 years ago)
- Last Synced: 2025-02-27T11:51:52.731Z (over 1 year ago)
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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%)