Retrieves COVID-19 vaccination data for a given list of countries
pull_vax_data(cntry)
cntry | country, or list of countries, that appear in the our world in data page |
---|
https://github.com/owid/covid-19-data
Returns data frame of total vaccinations by day
Import OWID vaccine data
Other vax:
get_vax_countries()
if (FALSE) { #only one country df_vax_zmb <- get_vax_data("Zambia") #only PEPFAR countries cntry_list <- get_vax_countries() df_vax_pepfar <- get_vax_data(cntry_list) #all countries cntry_list <- get_vax_countries(pepfar_only = FALSE) df_vax <- get_vax_data(cntry_list) }