
Exports file for checking population roll-ups
create_pop_check_export.RdExport the population roll-ups and determine differences between each population counts.
Usage
create_pop_check_export(
ctry.data,
country = Sys.getenv("DR_COUNTRY"),
excel_output_path = Sys.getenv("DR_TABLE_PATH")
)Arguments
- ctry.data
listA large list containing polio data for a country. This is the output of eitherinit_dr()orextract_country_data().- country
strName of the country.- excel_output_path
strOutput path of the Excel file.
Examples
if (FALSE) { # \dontrun{
ctry.data <- init_dr("algeria")
create_pop_check_export(ctry.data)
} # }