PAHO dengue digital surveillance sensors (North and South America)
Source:R/endpoints.R
pvt_dengue_sensors.RdUsage
pvt_dengue_sensors(
auth,
names,
locations,
epiweeks = "*",
fetch_args = fetch_args_list()
)Arguments
- auth
string. Your restricted access key (not the same as API key).
- names
character. List of sensor names to fetch. See the available sensors.
- locations
character. List of locations to fetch. See the codes for countries and territories in the Americas. # nolint
- epiweeks
timeset. Epiweeks to fetch. Supportsepirange()and defaults to all ("*") dates. Format asepirange(startweek, endweek), where startweek and endweek are of the form YYYYWW (string or numeric).- fetch_args
fetch_args. Additional arguments to pass tofetch(). Seefetch_args_list()for details.
Examples
if (FALSE) { # \dontrun{
pvt_dengue_sensors(
auth = Sys.getenv("DELPHI_EPIDATA_KEY"),
names = "ght",
locations = "ag",
epiweeks = epirange(201501, 202001)
)
} # }