R/get-cur-pch-hcahps-data.R

Defines functions current_pch_hcahps_data

Documented in current_pch_hcahps_data

#' Get Current PCH HCAHPS Data.
#'
#' @family Hospital Data
#'
#' @author Steven P. Sanderson II, MPH
#'
#' @seealso \url{https://data.cms.gov/provider-data/topics/hospitals/}
#'
#' @description Get the current PCH HCAHPS data.
#'
#' @details This function will obtain the current PCH HCAHPS data
#' from the output of the [healthyR.data::current_hosp_data()] function, that is
#' the required input for the `.data` parameter. You can pass in a list of which
#' of those data sets you would like,
#'
#' @param .data The data that results from the `current_hosp_data()` function.
#' @param .data_sets The default is: c(Facility","State","National"), which will
#' bring back all of the data in the PCH HCAHPS data sets that
#' are in the file. You can choose from the following:
#' *  Facility
#' *  National
#' *  State
#'
#' You can also pass things like c("state","Nation") as behind the scenes only
#' the PCH HCAHPS data sets are available to the function to choose
#' from and `grep` is used to find matches with `ignore.case = TRUE` set.
#'
#' @examples
#' \dontrun{
#' current_hosp_data() |>
#'   current_pch_hcahps_data(.data_sets = c("State","National"))
#' }
#'
#' @return
#' Gets the current PCH HCAHPS data from the current hospital data file.
#'
#' @name current_pch_hcahps_data
NULL

#' @export
#' @rdname current_pch_hcahps_data

current_pch_hcahps_data <- function(.data,
                                    .data_sets = c("Facility","State","National")) {

    # Variables
    ds <- .data_sets
    l <- .data

    # Checks
    if (!inherits(l, "current_hosp_data")){
        rlang::abort(
            message = "'.data' must come from the function 'current_hosp_data()",
            use_cli_format = TRUE
        )
    }

    # Manipulations
    # Get the exact files necessary to the ASC
    file_names_vec <- c("pch_hcahps_hospital",
                        "pch_hcahps_national",
                        "pch_hcahps_state")

    asc_list <- l[names(l) %in% file_names_vec]
    names(asc_list)[1] <-  "pch_hcahps_facility"

    # Make sure there are no 0 length items
    asc_list <- asc_list[lengths(asc_list) > 0]

    # Only keep the names we want
    ret <- asc_list[grep(
        paste(ds, collapse = "|"),
        names(asc_list),
        ignore.case = TRUE
    )]

    # Return
    attr(ret, ".list_type") <- "pch_hcahps_list"
    class(ret) <- c("pch_hcahps_list", class(ret))

    return(ret)

}

Try the healthyR.data package in your browser

Any scripts or data that you put into this service are public.

healthyR.data documentation built on July 4, 2024, 5:07 p.m.