Browse Source

added years parameter to hospitalizations

tags/v0.7.0
boB Rudis 7 years ago
parent
commit
6fb3c0dbb8
No known key found for this signature in database GPG Key ID: 2A514A4997464560
  1. 41
      R/hospital.r
  2. 10
      man/hospitalizations.Rd

41
R/hospital.r

@ -6,6 +6,13 @@
#' CDC FluView application drop down. Individual regions for each #' CDC FluView application drop down. Individual regions for each
#' surveillance area can also be selected. Use [surveillance_areas()] to #' surveillance area can also be selected. Use [surveillance_areas()] to
#' see a list of valid sub-regions for each surveillance area. #' see a list of valid sub-regions for each surveillance area.
#' @param years a vector of years to retrieve data for (i.e. `2014` for CDC
#' flu season 2014-2015). CDC has data for this API going back to 2009
#' and up until the _previous_ flu season.
#' Default value (`NULL`) means retrieve **all** years. NOTE: if you
#' happen to specify a 2-digit season value (i.e. `56` == 2016-2017)
#' the function is smart enough to retrieve by season ID vs convert that
#' to a year.
#' @references #' @references
#' - [Hospital Portal](https://gis.cdc.gov/GRASP/Fluview/FluHospRates.html) #' - [Hospital Portal](https://gis.cdc.gov/GRASP/Fluview/FluHospRates.html)
#' @export #' @export
@ -15,7 +22,7 @@
#' hosp_ihsp <- hospitalizations("ihsp") #' hosp_ihsp <- hospitalizations("ihsp")
#' } #' }
hospitalizations <- function(surveillance_area=c("flusurv", "eip", "ihsp"), hospitalizations <- function(surveillance_area=c("flusurv", "eip", "ihsp"),
region="all") { region="all", years=NULL) {
sarea <- match.arg(tolower(surveillance_area), choices = c("flusurv", "eip", "ihsp")) sarea <- match.arg(tolower(surveillance_area), choices = c("flusurv", "eip", "ihsp"))
sarea <- .surv_rev_map[sarea] sarea <- .surv_rev_map[sarea]
@ -92,9 +99,35 @@ hospitalizations <- function(surveillance_area=c("flusurv", "eip", "ihsp"),
levels=c("0-4 yr", "5-17 yr", "18-49 yr", "50-64 yr", levels=c("0-4 yr", "5-17 yr", "18-49 yr", "50-64 yr",
"65+ yr", "Overall")) "65+ yr", "Overall"))
xdf[,c("surveillance_area", "region", "year", "season", "wk_start", "wk_end", xdf <- xdf[,c("surveillance_area", "region", "year", "season", "wk_start", "wk_end",
"year_wk_num", "rate", "weeklyrate", "age", "age_label", "sea_label", "year_wk_num", "rate", "weeklyrate", "age", "age_label", "sea_label",
"sea_description", "mmwrid")] "sea_description", "mmwrid")]
available_seasons <- sort(unique(xdf$season))
if (!is.null(years)) { # specified years or seasons or a mix
years <- as.numeric(years)
years <- ifelse(years > 1996, years - 1960, years)
years <- sort(unique(years))
years <- years[years %in% available_seasons]
if (length(years) == 0) {
years <- rev(available_seasons)[1]
curr_season_descr <- xdf[xdf$season == years,]$sea_description[1]
message(
sprintf(
"No valid years specified, defaulting to the last available flu season => ID: %s [%s]",
years, curr_season_descr
)
)
}
xdf <- dplyr::filter(xdf, season %in% years)
}
xdf
} }

10
man/hospitalizations.Rd

@ -5,7 +5,7 @@
\title{Laboratory-Confirmed Influenza Hospitalizations} \title{Laboratory-Confirmed Influenza Hospitalizations}
\usage{ \usage{
hospitalizations(surveillance_area = c("flusurv", "eip", "ihsp"), hospitalizations(surveillance_area = c("flusurv", "eip", "ihsp"),
region = "all") region = "all", years = NULL)
} }
\arguments{ \arguments{
\item{surveillance_area}{one of "\code{flusurv}", "\code{eip}", or "\code{ihsp}"} \item{surveillance_area}{one of "\code{flusurv}", "\code{eip}", or "\code{ihsp}"}
@ -14,6 +14,14 @@ hospitalizations(surveillance_area = c("flusurv", "eip", "ihsp"),
CDC FluView application drop down. Individual regions for each CDC FluView application drop down. Individual regions for each
surveillance area can also be selected. Use \code{\link[=surveillance_areas]{surveillance_areas()}} to surveillance area can also be selected. Use \code{\link[=surveillance_areas]{surveillance_areas()}} to
see a list of valid sub-regions for each surveillance area.} see a list of valid sub-regions for each surveillance area.}
\item{years}{a vector of years to retrieve data for (i.e. \code{2014} for CDC
flu season 2014-2015). CDC has data for this API going back to 2009
and up until the \emph{previous} flu season.
Default value (\code{NULL}) means retrieve \strong{all} years. NOTE: if you
happen to specify a 2-digit season value (i.e. \code{56} == 2016-2017)
the function is smart enough to retrieve by season ID vs convert that
to a year.}
} }
\description{ \description{
Laboratory-Confirmed Influenza Hospitalizations Laboratory-Confirmed Influenza Hospitalizations

Loading…
Cancel
Save