2019-01-03 23:56:19 +01:00
# ==================================================================== #
# TITLE #
2021-02-02 23:57:35 +01:00
# Antimicrobial Resistance (AMR) Data Analysis for R #
2019-01-03 23:56:19 +01:00
# #
# SOURCE #
2020-07-08 14:48:06 +02:00
# https://github.com/msberends/AMR #
2019-01-03 23:56:19 +01:00
# #
# LICENCE #
2020-12-27 00:30:28 +01:00
# (c) 2018-2021 Berends MS, Luz CF et al. #
2020-10-08 11:16:03 +02:00
# Developed at the University of Groningen, the Netherlands, in #
# collaboration with non-profit organisations Certe Medical #
# Diagnostics & Advice, and University Medical Center Groningen. #
2019-01-03 23:56:19 +01:00
# #
# This R package is free software; you can freely use and distribute #
# it for both personal and commercial purposes under the terms of the #
# GNU General Public License version 2.0 (GNU GPL-2), as published by #
# the Free Software Foundation. #
2020-01-05 17:22:09 +01:00
# We created this package for both routine data analysis and academic #
# research and it was publicly released in the hope that it will be #
# useful, but it comes WITHOUT ANY WARRANTY OR LIABILITY. #
2020-10-08 11:16:03 +02:00
# #
# Visit our website for the full manual and a complete tutorial about #
2021-02-02 23:57:35 +01:00
# how to conduct AMR data analysis: https://msberends.github.io/AMR/ #
2019-01-03 23:56:19 +01:00
# ==================================================================== #
2021-01-18 16:57:56 +01:00
#' Guess Antibiotic Column
2019-01-03 23:56:19 +01:00
#'
2019-11-28 22:32:17 +01:00
#' This tries to find a column name in a data set based on information from the [antibiotics] data set. Also supports WHONET abbreviations.
2021-01-18 16:57:56 +01:00
#' @inheritSection lifecycle Stable Lifecycle
2020-09-18 16:05:53 +02:00
#' @param x a [data.frame]
2019-11-28 22:32:17 +01:00
#' @param search_string a text to search `x` for, will be checked with [as.ab()] if this value is not a column in `x`
2021-05-12 18:15:03 +02:00
#' @param verbose a [logical] to indicate whether additional info should be printed
#' @param only_rsi_columns a [logical] to indicate whether only antibiotic columns must be detected that were transformed to class `<rsi>` (see [as.rsi()]) on beforehand (defaults to `FALSE`)
2020-10-19 17:09:19 +02:00
#' @details You can look for an antibiotic (trade) name or abbreviation and it will search `x` and the [antibiotics] data set for any column containing a name or code of that antibiotic. **Longer columns names take precedence over shorter column names.**
2019-11-28 22:32:17 +01:00
#' @return A column name of `x`, or `NULL` when no result is found.
2019-01-03 23:56:19 +01:00
#' @export
2021-01-18 16:57:56 +01:00
#' @inheritSection AMR Read more on Our Website!
2019-01-11 20:37:23 +01:00
#' @examples
#' df <- data.frame(amox = "S",
#' tetr = "R")
#'
#' guess_ab_col(df, "amoxicillin")
#' # [1] "amox"
2019-05-10 16:44:59 +02:00
#' guess_ab_col(df, "J01AA07") # ATC code of tetracycline
2019-01-11 20:37:23 +01:00
#' # [1] "tetr"
#'
#' guess_ab_col(df, "J01AA07", verbose = TRUE)
2020-12-03 16:59:04 +01:00
#' # NOTE: Using column 'tetr' as input for J01AA07 (tetracycline).
2019-01-11 20:37:23 +01:00
#' # [1] "tetr"
2019-01-29 00:06:50 +01:00
#'
#' # WHONET codes
#' df <- data.frame(AMP_ND10 = "R",
#' AMC_ED20 = "S")
#' guess_ab_col(df, "ampicillin")
#' # [1] "AMP_ND10"
#' guess_ab_col(df, "J01CR02")
#' # [1] "AMC_ED20"
2019-05-10 16:44:59 +02:00
#' guess_ab_col(df, as.ab("augmentin"))
2019-01-29 00:06:50 +01:00
#' # [1] "AMC_ED20"
2019-05-31 14:40:15 +02:00
#'
#' # Longer names take precendence:
#' df <- data.frame(AMP_ED2 = "S",
#' AMP_ED20 = "S")
#' guess_ab_col(df, "ampicillin")
#' # [1] "AMP_ED20"
2021-02-08 14:18:42 +01:00
guess_ab_col <- function ( x = NULL , search_string = NULL , verbose = FALSE , only_rsi_columns = FALSE ) {
2020-10-19 17:09:19 +02:00
meet_criteria ( x , allow_class = " data.frame" , allow_NULL = TRUE )
meet_criteria ( search_string , allow_class = " character" , has_length = 1 , allow_NULL = TRUE )
meet_criteria ( verbose , allow_class = " logical" , has_length = 1 )
2021-02-04 16:48:16 +01:00
meet_criteria ( only_rsi_columns , allow_class = " logical" , has_length = 1 )
2020-10-19 17:09:19 +02:00
2019-05-13 10:10:16 +02:00
if ( is.null ( x ) & is.null ( search_string ) ) {
2019-01-11 20:37:23 +01:00
return ( as.name ( " guess_ab_col" ) )
2019-05-10 16:44:59 +02:00
} else {
2021-02-02 23:57:35 +01:00
meet_criteria ( search_string , allow_class = " character" , has_length = 1 , allow_NULL = FALSE )
2019-01-03 23:56:19 +01:00
}
2020-07-13 09:17:24 +02:00
2021-02-02 23:57:35 +01:00
all_found <- get_column_abx ( x , info = verbose , only_rsi_columns = only_rsi_columns , verbose = verbose )
search_string.ab <- suppressWarnings ( as.ab ( search_string ) )
ab_result <- unname ( all_found [names ( all_found ) == search_string.ab ] )
2019-01-11 20:37:23 +01:00
if ( length ( ab_result ) == 0 ) {
2019-01-03 23:56:19 +01:00
if ( verbose == TRUE ) {
2020-12-03 16:59:04 +01:00
message_ ( " No column found as input for " , search_string ,
" (" , ab_name ( search_string , language = NULL , tolower = TRUE ) , " )." ,
2020-10-27 15:56:51 +01:00
add_fn = font_black ,
as_note = FALSE )
2019-01-03 23:56:19 +01:00
}
return ( NULL )
2019-01-11 20:37:23 +01:00
} else {
if ( verbose == TRUE ) {
2020-12-03 16:59:04 +01:00
message_ ( " Using column '" , font_bold ( ab_result ) , " ' as input for " , search_string ,
" (" , ab_name ( search_string , language = NULL , tolower = TRUE ) , " )." )
2019-01-11 20:37:23 +01:00
}
2019-05-10 16:44:59 +02:00
return ( ab_result )
2019-01-03 23:56:19 +01:00
}
}
2019-06-27 11:57:45 +02:00
get_column_abx <- function ( x ,
soft_dependencies = NULL ,
hard_dependencies = NULL ,
verbose = FALSE ,
2020-09-24 00:30:11 +02:00
info = TRUE ,
2021-02-02 23:57:35 +01:00
only_rsi_columns = FALSE ,
2021-04-26 23:57:37 +02:00
sort = TRUE ,
2019-06-27 11:57:45 +02:00
... ) {
2020-10-19 17:09:19 +02:00
meet_criteria ( x , allow_class = " data.frame" )
meet_criteria ( soft_dependencies , allow_class = " character" , allow_NULL = TRUE )
meet_criteria ( hard_dependencies , allow_class = " character" , allow_NULL = TRUE )
meet_criteria ( verbose , allow_class = " logical" , has_length = 1 )
meet_criteria ( info , allow_class = " logical" , has_length = 1 )
2021-02-02 23:57:35 +01:00
meet_criteria ( only_rsi_columns , allow_class = " logical" , has_length = 1 )
2021-04-26 23:57:37 +02:00
meet_criteria ( sort , allow_class = " logical" , has_length = 1 )
2020-07-13 09:17:24 +02:00
2020-09-24 00:30:11 +02:00
if ( info == TRUE ) {
2021-01-15 22:44:52 +01:00
message_ ( " Auto-guessing columns suitable for analysis" , appendLF = FALSE , as_note = FALSE )
2020-09-24 00:30:11 +02:00
}
2019-10-08 10:02:19 +02:00
x <- as.data.frame ( x , stringsAsFactors = FALSE )
2021-02-02 23:57:35 +01:00
if ( only_rsi_columns == TRUE ) {
x <- x [ , which ( is.rsi ( x ) ) , drop = FALSE ]
}
2020-06-09 16:18:03 +02:00
if ( NROW ( x ) > 10000 ) {
# only test maximum of 10,000 values per column
2020-09-24 00:30:11 +02:00
if ( info == TRUE ) {
2020-10-27 15:56:51 +01:00
message_ ( " (using only " , font_bold ( " the first 10,000 rows" ) , " )..." ,
appendLF = FALSE ,
as_note = FALSE )
2020-09-24 00:30:11 +02:00
}
2020-06-09 16:18:03 +02:00
x <- x [1 : 10000 , , drop = FALSE ]
2020-09-24 00:30:11 +02:00
} else if ( info == TRUE ) {
2020-10-27 15:56:51 +01:00
message_ ( " ..." , appendLF = FALSE , as_note = FALSE )
2020-06-09 16:18:03 +02:00
}
2021-01-22 10:20:41 +01:00
2019-10-08 10:02:19 +02:00
# only check columns that are a valid AB code, ATC code, name, abbreviation or synonym,
2020-12-28 22:24:33 +01:00
# or already have the <rsi> class (as.rsi)
# and that they have no more than 50% invalid values
2021-02-02 23:57:35 +01:00
vectr_antibiotics <- unlist ( AB_lookup $ generalised_all )
2019-10-08 10:02:19 +02:00
vectr_antibiotics <- vectr_antibiotics [ ! is.na ( vectr_antibiotics ) & nchar ( vectr_antibiotics ) >= 3 ]
2021-02-02 23:57:35 +01:00
x_columns <- vapply ( FUN.VALUE = character ( 1 ) ,
colnames ( x ) ,
function ( col , df = x ) {
if ( generalise_antibiotic_name ( col ) %in% vectr_antibiotics ||
is.rsi ( x [ , col , drop = TRUE ] ) ||
is.rsi.eligible ( x [ , col , drop = TRUE ] , threshold = 0.5 )
) {
return ( col )
} else {
return ( NA_character_ )
}
} )
2021-01-22 10:20:41 +01:00
2019-10-08 22:21:33 +02:00
x_columns <- x_columns [ ! is.na ( x_columns ) ]
2021-02-02 23:57:35 +01:00
x <- x [ , x_columns , drop = FALSE ] # without drop = FALSE, x will become a vector when x_columns is length 1
2019-06-27 11:57:45 +02:00
df_trans <- data.frame ( colnames = colnames ( x ) ,
2020-11-11 16:49:27 +01:00
abcode = suppressWarnings ( as.ab ( colnames ( x ) , info = FALSE ) ) ,
stringsAsFactors = FALSE )
2020-09-24 00:30:11 +02:00
df_trans <- df_trans [ ! is.na ( df_trans $ abcode ) , , drop = FALSE ]
2019-06-27 11:57:45 +02:00
x <- as.character ( df_trans $ colnames )
names ( x ) <- df_trans $ abcode
2020-07-13 09:17:24 +02:00
2019-06-27 11:57:45 +02:00
# add from self-defined dots (...):
2021-02-02 23:57:35 +01:00
# such as get_column_abx(example_isolates %>% rename(thisone = AMX), amox = "thisone")
2019-06-27 11:57:45 +02:00
dots <- list ( ... )
if ( length ( dots ) > 0 ) {
2020-08-14 13:36:10 +02:00
newnames <- suppressWarnings ( as.ab ( names ( dots ) , info = FALSE ) )
2019-06-27 11:57:45 +02:00
if ( any ( is.na ( newnames ) ) ) {
2020-11-10 16:35:56 +01:00
warning_ ( " Invalid antibiotic reference(s): " , toString ( names ( dots ) [is.na ( newnames ) ] ) ,
call = FALSE ,
immediate = TRUE )
2019-06-27 11:57:45 +02:00
}
# turn all NULLs to NAs
dots <- unlist ( lapply ( dots , function ( x ) if ( is.null ( x ) ) NA else x ) )
names ( dots ) <- newnames
dots <- dots [ ! is.na ( names ( dots ) ) ]
# merge, but overwrite automatically determined ones by 'dots'
x <- c ( x [ ! x %in% dots & ! names ( x ) %in% names ( dots ) ] , dots )
# delete NAs, this will make e.g. eucast_rules(... TMP = NULL) work to prevent TMP from being used
x <- x [ ! is.na ( x ) ]
}
2020-07-13 09:17:24 +02:00
2020-06-03 11:48:00 +02:00
if ( length ( x ) == 0 ) {
2020-09-24 00:30:11 +02:00
if ( info == TRUE ) {
2020-10-27 15:56:51 +01:00
message_ ( " No columns found." )
2020-09-24 00:30:11 +02:00
}
2020-06-03 11:48:00 +02:00
return ( x )
}
2019-06-27 11:57:45 +02:00
# sort on name
2021-04-26 23:57:37 +02:00
if ( sort == TRUE ) {
x <- x [order ( names ( x ) , x ) ]
}
2020-09-03 12:31:48 +02:00
duplicates <- c ( x [duplicated ( x ) ] , x [duplicated ( names ( x ) ) ] )
2019-10-26 21:56:41 +02:00
duplicates <- duplicates [unique ( names ( duplicates ) ) ]
x <- c ( x [ ! names ( x ) %in% names ( duplicates ) ] , duplicates )
2021-04-26 23:57:37 +02:00
if ( sort == TRUE ) {
x <- x [order ( names ( x ) , x ) ]
}
2019-08-15 17:09:27 +02:00
2020-06-03 11:48:00 +02:00
# succeeded with auto-guessing
2020-09-24 00:30:11 +02:00
if ( info == TRUE ) {
2020-11-11 16:49:27 +01:00
message_ ( " OK." , add_fn = list ( font_green , font_bold ) , as_note = FALSE )
2020-09-24 00:30:11 +02:00
}
2020-07-13 09:17:24 +02:00
2019-10-26 21:56:41 +02:00
for ( i in seq_len ( length ( x ) ) ) {
2020-09-24 00:30:11 +02:00
if ( info == TRUE & verbose == TRUE & ! names ( x [i ] ) %in% names ( duplicates ) ) {
2020-12-03 16:59:04 +01:00
message_ ( " Using column '" , font_bold ( x [i ] ) , " ' as input for " , names ( x ) [i ] ,
" (" , ab_name ( names ( x ) [i ] , tolower = TRUE , language = NULL ) , " )." )
2019-06-27 11:57:45 +02:00
}
2020-09-24 00:30:11 +02:00
if ( info == TRUE & names ( x [i ] ) %in% names ( duplicates ) ) {
2020-12-03 16:59:04 +01:00
warning_ ( paste0 ( " Using column '" , font_bold ( x [i ] ) , " ' as input for " , names ( x ) [i ] ,
" (" , ab_name ( names ( x ) [i ] , tolower = TRUE , language = NULL ) ,
2020-11-10 16:35:56 +01:00
" ), although it was matched for multiple antibiotics or columns." ) ,
add_fn = font_red ,
call = FALSE ,
immediate = verbose )
2019-06-27 11:57:45 +02:00
}
}
2019-10-26 21:56:41 +02:00
2019-06-27 11:57:45 +02:00
if ( ! is.null ( hard_dependencies ) ) {
2019-10-26 21:56:41 +02:00
hard_dependencies <- unique ( hard_dependencies )
2019-06-27 11:57:45 +02:00
if ( ! all ( hard_dependencies %in% names ( x ) ) ) {
# missing a hard dependency will return NA and consequently the data will not be analysed
missing <- hard_dependencies [ ! hard_dependencies %in% names ( x ) ]
generate_warning_abs_missing ( missing , any = FALSE )
return ( NA )
}
}
if ( ! is.null ( soft_dependencies ) ) {
2019-10-26 21:56:41 +02:00
soft_dependencies <- unique ( soft_dependencies )
2020-09-24 00:30:11 +02:00
if ( info == TRUE & ! all ( soft_dependencies %in% names ( x ) ) ) {
2019-06-27 11:57:45 +02:00
# missing a soft dependency may lower the reliability
missing <- soft_dependencies [ ! soft_dependencies %in% names ( x ) ]
2021-02-04 16:48:16 +01:00
missing_msg <- vector_and ( paste0 ( ab_name ( missing , tolower = TRUE , language = NULL ) ,
" (" , font_bold ( missing , collapse = NULL ) , " )" ) ,
quotes = FALSE )
2020-10-27 15:56:51 +01:00
message_ ( " Reliability would be improved if these antimicrobial results would be available too: " ,
missing_msg )
2019-06-27 11:57:45 +02:00
}
}
x
}
generate_warning_abs_missing <- function ( missing , any = FALSE ) {
2020-05-18 11:09:02 +02:00
missing <- paste0 ( missing , " (" , ab_name ( missing , tolower = TRUE , language = NULL ) , " )" )
2019-06-27 11:57:45 +02:00
if ( any == TRUE ) {
any_txt <- c ( " any of" , " is" )
} else {
any_txt <- c ( " " , " are" )
}
2020-11-10 16:35:56 +01:00
warning_ ( paste0 ( " Introducing NAs since" , any_txt [1 ] , " these antimicrobials " , any_txt [2 ] , " required: " ,
2021-02-04 16:48:16 +01:00
vector_and ( missing , quotes = FALSE ) ) ,
2020-11-10 16:35:56 +01:00
immediate = TRUE ,
call = FALSE )
2019-06-27 11:57:45 +02:00
}