Retrieves COVID-19 vaccination data for a given list of countries

pull_vax_data(cntry)

Arguments

cntry

country, or list of countries, that appear in the our world in data page

Source

https://github.com/owid/covid-19-data

Value

Returns data frame of total vaccinations by day

Details

Import OWID vaccine data

See also

Other vax: get_vax_countries()

Examples

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) }