
Issues with stool adequacy at the country level
generate_inad_tab.RdGenerates a summary table at the country level highlighting issues around stool adequacy.
Arguments
- afp_data
tibbleafp.all.2of the output ofextract_country_data().- cstool
tibbleStool adequacy at the country level. This is the output off.stool.ad.01().- start_date
strStart date of analysis.- end_date
strEnd date of analysis.
Examples
if (FALSE) { # \dontrun{
ctry.data <- init_dr("algeria")
start_date <- "2021-01-01"
end_date <- "2023-12-31"
cstool <- f.stool.ad.01(
afp.data = ctry.data$afp.all.2,
admin.data = ctry.data$ctry.pop,
start.date = start_date,
end.date = end_date,
spatial.scale = "ctry",
missing = "good",
bad.data = "inadequate",
rolling = F,
sp_continuity_validation = F
)
generate_inad_tab(ctry.data, cstool, start_date, end_date)
} # }