ilinet.Rd
The CDC FluView Portal provides in-season and past seasons' national, regional, and state-level outpatient illness and viral surveillance data from both ILINet (Influenza-like Illness Surveillance Network) and WHO/NREVSS (National Respiratory and Enteric Virus Surveillance System).
ilinet(region = c("national", "hhs", "census", "state"), years = NULL)
region | one of " |
---|---|
years | a vector of years to retrieve data for (i.e. |
This function retrieves current and historical ILINet surveillance data for the identified region.
ILINet Portal (Login required)
national_ili <- ilinet("national", years = 2017)# NOT RUN { hhs_ili <- ilinet("hhs") census_ili <- ilinet("census") state_ili <- ilinet("state") all_ili <- suppressWarnings( suppressMessages(purrr::map_df(c("national", "hhs", "census", "state"), ilinet))) # }