Skip to content

Latest commit

 

History

History
72 lines (52 loc) · 3.07 KB

README.md

File metadata and controls

72 lines (52 loc) · 3.07 KB

Covid 19 World Vaccination Analysis

Goals

Identify what factors from the World Bank API database relate to the vaccination percentage for coutries around the world.

Extraction

Kaggle CSV of world vaccination progress cribbed from the Our World in Data Github Repository: https://www.kaggle.com/gpreda/covid-world-vaccination-progress

API which pulls from World Bank for Global Development Indicators:
https://data.worldbank.org/

ISO conversion for country names:
https://gist.github.com/tadast/8827699

All data was extracted with pandas and merged into one working frame for analysis.

Analysis

Best and Worst Performing Countries by vaccinated population

Choropleth

World Bank Global Development Indicators by Quartile

GDP

Private Health Expenditure

Population Density

Total Population

Results

After performing ANOVA testing on each Indicator's quartile:

Level of confidence: 95%
H0: All mean vaccination percents over quartiles are equal
Ha: There is at least one mean vaccination percent that is not equal to another

Population Density was the only indicator which rejected the null hypothesis, which would indicate that there is a statistically significant difference in quartiles with a 95% level of confidence.

Other indicators would require more data to reach any further conclusions.

Potential Errors and Further Study

  • More indicators can be compared, using a more robust API structure to check for multiyear data and filter for missing values.