Returns a data frame with all available disease groups, their labels,
and climate sensitivity.
Usage
list_disease_groups(
climate_sensitive_only = FALSE,
lang = "en",
verbose = TRUE
)
Arguments
- climate_sensitive_only
Logical. If TRUE, returns only climate-sensitive groups.
- lang
Character. Language for labels ("en", "pt", "es"). Default "en".
- verbose
Logical. If TRUE, prints summary information. Default TRUE.
Value
A data.frame with columns: group_name, label, climate_sensitive, n_codes.
Examples
if (FALSE) { # \dontrun{
# List all groups in Portuguese
list_disease_groups(lang = "pt")
# List only climate-sensitive groups in English
list_disease_groups(climate_sensitive_only = TRUE, lang = "en")
} # }