This function creates epidemic control curves for "ALL PEPFAR" or selected OU's
Usage
plot_epi_trends(df, sel_cntry = c("All PEPFAR"))
Arguments
- df
UNAIDS data frame loaded from
load_unaids()
- sel_cntry
PEPFAR country to visualize ("ALL PEPFAR" as default or list OU names)
Examples
if (FALSE) { # \dontrun{
df_unaids <- load_unaids(pepfar_only = FALSE)
plot_epi_trends(df_unaids)
plot_epi_trends(df_unaids, sel_cntry = "Lesotho")
plot_epi_trends(df_unaids, sel_cntry = c("South Africa", "Zambia", "Kenya", "Malawi"))
} # }