import mobility google reports, acasp and unesco data on interventions

read_google_global()

read_google_region_list()

read_google_region_country(country_iso = "PE")

read_acaps_governments()

read_unesco_education()

Arguments

country_iso

two letter iso code for each country available in read_google_region_list()

Value

import external data sources on covid19 human behaviour or interventions

Functions

  • read_google_global: import google mobility reports

  • read_google_region_list: print list of files inside regional zip file

  • read_google_region_country: import regional mobility data for one country

  • read_acaps_governments: import acaps dataset

  • read_unesco_education: import unesco dataset

Examples

if (FALSE) { library(covid19viz) library(tidyverse) # google mobility reports # global read_google_global() # regional # first: select country ISO read_google_region_list() # second: read specific country data peru <- read_google_region_country(country_iso = "PE") peru %>% count(sub_region_1) # acaps data read_acaps_governments() # unesco education data read_unesco_education() }