Data set containing defined intrinsic resistance by EUCAST of all bug-drug combinations.

Usage,
intrinsic_resistant

Format

A data.frame with 134,956 observations and 2 variables:

  • mo
    Microorganism ID

  • ab
    Antibiotic ID

Details

The repository of this AMR package contains a file comprising this data set with full taxonomic and antibiotic names: https://github.com/msberends/AMR/blob/main/data-raw/intrinsic_resistant.txt. This file allows for machine reading EUCAST guidelines about intrinsic resistance, which is almost impossible with the Excel and PDF files distributed by EUCAST. The file is updated automatically.

This data set is based on 'EUCAST Expert Rules' and 'EUCAST Intrinsic Resistance and Unusual Phenotypes' v3.3 (2021).

Reference Data Publicly Available

All reference data sets (about microorganisms, antibiotics, R/SI interpretation, EUCAST rules, etc.) in this AMR package are publicly and freely available. We continually export our data sets to formats for use in R, SPSS, SAS, Stata and Excel. We also supply flat files that are machine-readable and suitable for input in any software program, such as laboratory information systems. Please find all download links on our website, which is automatically updated with every code change.

Read more on Our Website!

On our website https://msberends.github.io/AMR/ you can find a comprehensive tutorial about how to conduct AMR data analysis, the complete documentation of all functions and an example analysis using WHONET data.

Examples

# \donttest{
if (require("dplyr")) {
  intrinsic_resistant %>%
    mutate(mo = mo_name(mo),
           ab = ab_name(mo))
    filter(ab == "Vancomycin" & mo %like% "Enterococcus") %>% 
    pull(mo)
  #> [1] "Enterococcus casseliflavus" "Enterococcus gallinarum"
}
# }