This function creates a summary table showing OU progress toward the 95-95-95's (Deprecated)
Usage
base_plot(
df,
cntry,
denom = c("PLHIV", "Relative"),
grp = c("All", "Female 15+", "Male 15+", "Peds <15"),
yr = NULL
)
Arguments
- df
dataframe from load_unaids
- cntry
PEPFAR country to visualize (list OU name)
- denom
which denominator/base to use, "PLHIV" (default) or "Relative"
- grp
age/sex group, c("All", "Female 15+", "Male 15+", "Peds <15")
- yr
year in question, defaults to max year
Details
Use tab_95s_progress
instead.
Examples
if (FALSE) { # \dontrun{
df_unaids <- load_unaids()
base_plot(df_unaids, "Kenya", denom = "PLHIV")
base_plot(df_unaids, "Kenya", denom = "Relative")
} # }