R/flag_opioid_deaths.R

Defines functions flag_opioid_deaths

Documented in flag_opioid_deaths

#' Flag opioid deaths according to ISW7 rules
#'
#' Given an MCOD dataframe, will apply ISW7 rules to flag opioid deaths for
#' both ICD9 and ICD10 codes. Expects you to run unite_records() first. If you
#' don't, it will do so, but will remove that columns by default. Change
#' keep_cols = TRUE to keep it.
#'
#' @param processed_df processed dataframe
#' @param year if NULL, will attempt to detect
#' @param keep_cols keep intermediate columns
#'
#' @return new dataframe with a binary opioid_death column
#' @importFrom dplyr select one_of "%>%" mutate
#' @importFrom tibble has_name
#' @export
flag_opioid_deaths <- function(processed_df, year = NULL, keep_cols = FALSE) {
    ## Make a new column called `opioid_death` that is:
    ##  - true for ICD9 if any opioid code is in any UCOD or record field
    ##  - true for ICD10 if contains specified UCOD **and** at least
    ##      one specified T code.

    ## Extract year
    if (is.null(year)) {
        year <- .extract_year(processed_df)
    }

    ## Check if already preprocessed with necessary columns
    original_cols <- names(processed_df)
    if (!(tibble::has_name(processed_df, "f_records_all"))) {
        warning("Missing the column `f_records_all`. ",
                "Generating this column automatically.\n",
                "As a result, all `record_` columns will be dropped.\n",
                "See help(unite_records) for more information.")
        processed_df <- processed_df %>%
            unite_records(year = year)
    }

    ## Flag opioid deaths according to ICD definition
    if (year >= 1979 & year <= 1998) {
        new_df <- processed_df %>%
            dplyr::mutate(opioid_death =
                       (grepl(.regex_opioid_icd9(), ucod) |
                            grepl(.regex_opioid_icd9(n_codes = TRUE),
                                  f_records_all)) + 0)
    } else {
        new_df <- processed_df %>%
            dplyr::mutate(opioid_death =
                       (grepl(.regex_opioid_icd10(ucod_codes = TRUE), ucod) &
                            grepl(.regex_opioid_icd10(t_codes = TRUE),
                                  f_records_all)) + 0)
    }

    ## Drop all intermediate columns?
    if (!keep_cols) {
        new_df <- suppressMessages(suppressWarnings(
            dplyr::select(
                new_df, dplyr::one_of(c(original_cols, "opioid_death"))
                )
        ))
    }

    return(new_df)
}
mkiang/narcan documentation built on Sept. 26, 2024, 7:18 a.m.