<<<<<<< HEAD

Note: values on this page will change with every website update since they are based on randomly created values and the page was written in R Markdown. However, the methodology remains unchanged. This page was generated on 14 March 2022.

=======

Note: values on this page will change with every website update since they are based on randomly created values and the page was written in R Markdown. However, the methodology remains unchanged. This page was generated on 12 March 2022.

>>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f

Introduction

Conducting AMR data analysis unfortunately requires in-depth knowledge from different scientific fields, which makes it hard to do right. At least, it requires:

  • Good questions (always start with those!)
  • A thorough understanding of (clinical) epidemiology, to understand the clinical and epidemiological relevance and possible bias of results
  • A thorough understanding of (clinical) microbiology/infectious diseases, to understand which microorganisms are causal to which infections and the implications of pharmaceutical treatment, as well as understanding intrinsic and acquired microbial resistance
  • Experience with data analysis with microbiological tests and their results, to understand the determination and limitations of MIC values and their interpretations to RSI values
  • Availability of the biological taxonomy of microorganisms and probably normalisation factors for pharmaceuticals, such as defined daily doses (DDD)
  • Available (inter-)national guidelines, and profound methods to apply them

Of course, we cannot instantly provide you with knowledge and experience. But with this AMR package, we aimed at providing (1) tools to simplify antimicrobial resistance data cleaning, transformation and analysis, (2) methods to easily incorporate international guidelines and (3) scientifically reliable reference data, including the requirements mentioned above.

The AMR package enables standardised and reproducible AMR data analysis, with the application of evidence-based rules, determination of first isolates, translation of various codes for microorganisms and antimicrobial agents, determination of (multi-drug) resistant microorganisms, and calculation of antimicrobial resistance, prevalence and future trends.

Preparation

For this tutorial, we will create fake demonstration data to work with.

You can skip to Cleaning the data if you already have your own data ready. If you start your analysis, try to make the structure of your data generally look like this:

<<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
date patient_id mo AMX CIP
2022-03-142022-03-12abcd Escherichia coli S S
2022-03-142022-03-12abcd Escherichia coli S R
2022-03-142022-03-12efgh Escherichia coli R S

Needed R packages

As with many uses in R, we need some additional packages for AMR data analysis. Our package works closely together with the tidyverse packages dplyr and ggplot2 by RStudio. The tidyverse tremendously improves the way we conduct data science - it allows for a very natural way of writing syntaxes and creating beautiful plots in R.

We will also use the cleaner package, that can be used for cleaning data and creating frequency tables.

library(dplyr)
library(ggplot2)
library(AMR)
library(cleaner)

# (if not yet installed, install with:)
# install.packages(c("dplyr", "ggplot2", "AMR", "cleaner"))

Creation of data

We will create some fake example data to use for analysis. For AMR data analysis, we need at least: a patient ID, name or code of a microorganism, a date and antimicrobial results (an antibiogram). It could also include a specimen type (e.g. to filter on blood or urine), the ward type (e.g. to filter on ICUs).

With additional columns (like a hospital name, the patients gender of even [well-defined] clinical properties) you can do a comparative analysis, as this tutorial will demonstrate too.

Patients

To start with patients, we need a unique list of patients.

patients <- unlist(lapply(LETTERS, paste0, 1:10))

The LETTERS object is available in R - it’s a vector with 26 characters: A to Z. The patients object we just created is now a vector of length 260, with values (patient IDs) varying from A1 to Z10. Now we we also set the gender of our patients, by putting the ID and the gender in a table:

patients_table <- data.frame(patient_id = patients,
                             gender = c(rep("M", 135),
                                        rep("F", 125)))

The first 135 patient IDs are now male, the other 125 are female.

Dates

Let’s pretend that our data consists of blood cultures isolates from between 1 January 2010 and 1 January 2018.

dates <- seq(as.Date("2010-01-01"), as.Date("2018-01-01"), by = "day")

This dates object now contains all days in our date range.

Microorganisms

For this tutorial, we will uses four different microorganisms: Escherichia coli, Staphylococcus aureus, Streptococcus pneumoniae, and Klebsiella pneumoniae:

bacteria <- c("Escherichia coli", "Staphylococcus aureus",
              "Streptococcus pneumoniae", "Klebsiella pneumoniae")

Put everything together

Using the sample() function, we can randomly select items from all objects we defined earlier. To let our fake data reflect reality a bit, we will also approximately define the probabilities of bacteria and the antibiotic results, using the random_rsi() function.

sample_size <- 20000
data <- data.frame(date = sample(dates, size = sample_size, replace = TRUE),
                   patient_id = sample(patients, size = sample_size, replace = TRUE),
                   hospital = sample(c("Hospital A",
                                       "Hospital B",
                                       "Hospital C",
                                       "Hospital D"),
                                     size = sample_size, replace = TRUE,
                                     prob = c(0.30, 0.35, 0.15, 0.20)),
                   bacteria = sample(bacteria, size = sample_size, replace = TRUE,
                                     prob = c(0.50, 0.25, 0.15, 0.10)),
                   AMX = random_rsi(sample_size, prob_RSI = c(0.35, 0.60, 0.05)),
                   AMC = random_rsi(sample_size, prob_RSI = c(0.15, 0.75, 0.10)),
                   CIP = random_rsi(sample_size, prob_RSI = c(0.20, 0.80, 0.00)),
                   GEN = random_rsi(sample_size, prob_RSI = c(0.08, 0.92, 0.00)))

Using the left_join() function from the dplyr package, we can ‘map’ the gender to the patient ID using the patients_table object we created earlier:

data <- data %>% left_join(patients_table)

The resulting data set contains 20,000 blood culture isolates. With the head() function we can preview the first 6 rows of this data set:

head(data)
<<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
date patient_id hospital bacteria AMX AMC CIP GEN gender
2014-06-27 G7 Hospital B2014-03-12 Z10 Hospital CEscherichia coli S R S S S M
2014-02-01 H10 Hospital B Streptococcus pneumoniae2013-07-09 X5 Hospital D Escherichia coliR S S S F
2011-05-09 V2 Hospital C Escherichia coli S2015-10-01 G6 Hospital D Klebsiella pneumoniaeR S R S F
2016-09-06 V10 Hospital C Escherichia coli S S R2015-08-31 B6 Hospital B Staphylococcus aureus S R SS M
2014-04-11 M4 Hospital D Staphylococcus aureus S2010-05-21 T10 Hospital A Escherichia coli S S SS S S M
2017-06-26 D72011-03-10 N4Hospital B Staphylococcus aureus I S S R M

Now, let’s start the cleaning and the analysis!

Cleaning the data

We also created a package dedicated to data cleaning and checking, called the cleaner package. It freq() function can be used to create frequency tables.

For example, for the gender variable:

data %>% freq(gender)

Frequency table

Class: character
Length: 20,000
Available: 20,000 (100%, NA: 0 = 0%)
Unique: 2

Shortest: 1
Longest: 1

<<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
Item Count Percent Cum. Count Cum. Percent
1 M10,413 52.07% 10,413 52.07%10,445 52.23% 10,445 52.23%
2 F9,587 47.94%9,555 47.78%20,000 100.00%

So, we can draw at least two conclusions immediately. From a data scientists perspective, the data looks clean: only values M and F. From a researchers perspective: there are slightly more men. Nothing we didn’t already know.

The data is already quite clean, but we still need to transform some variables. The bacteria column now consists of text, and we want to add more variables based on microbial IDs later on. So, we will transform this column to valid IDs. The mutate() function of the dplyr package makes this really easy:

data <- data %>%
  mutate(bacteria = as.mo(bacteria))

We also want to transform the antibiotics, because in real life data we don’t know if they are really clean. The as.rsi() function ensures reliability and reproducibility in these kind of variables. The is.rsi.eligible() can check which columns are probably columns with R/SI test results. Using mutate() and across(), we can apply the transformation to the formal <rsi> class:

is.rsi.eligible(data)
# [1] FALSE FALSE FALSE FALSE  TRUE  TRUE  TRUE  TRUE FALSE
colnames(data)[is.rsi.eligible(data)]
# [1] "AMX" "AMC" "CIP" "GEN"

data <- data %>%
  mutate(across(where(is.rsi.eligible), as.rsi))

Finally, we will apply EUCAST rules on our antimicrobial results. In Europe, most medical microbiological laboratories already apply these rules. Our package features their latest insights on intrinsic resistance and exceptional phenotypes. Moreover, the eucast_rules() function can also apply additional rules, like forcing ampicillin = R when amoxicillin/clavulanic acid = R.

Because the amoxicillin (column AMX) and amoxicillin/clavulanic acid (column AMC) in our data were generated randomly, some rows will undoubtedly contain AMX = S and AMC = R, which is technically impossible. The eucast_rules() fixes this:

data <- eucast_rules(data, col_mo = "bacteria", rules = "all")

Adding new variables

Now that we have the microbial ID, we can add some taxonomic properties:

data <- data %>% 
  mutate(gramstain = mo_gramstain(bacteria),
         genus = mo_genus(bacteria),
         species = mo_species(bacteria))

First isolates

We also need to know which isolates we can actually use for analysis.

To conduct an analysis of antimicrobial resistance, you must only include the first isolate of every patient per episode (Hindler et al., Clin Infect Dis. 2007). If you would not do this, you could easily get an overestimate or underestimate of the resistance of an antibiotic. Imagine that a patient was admitted with an MRSA and that it was found in 5 different blood cultures the following weeks (yes, some countries like the Netherlands have these blood drawing policies). The resistance percentage of oxacillin of all isolates would be overestimated, because you included this MRSA more than once. It would clearly be selection bias.

The Clinical and Laboratory Standards Institute (CLSI) appoints this as follows:

(…) When preparing a cumulative antibiogram to guide clinical decisions about empirical antimicrobial therapy of initial infections, only the first isolate of a given species per patient, per analysis period (eg, one year) should be included, irrespective of body site, antimicrobial susceptibility profile, or other phenotypical characteristics (eg, biotype). The first isolate is easily identified, and cumulative antimicrobial susceptibility test data prepared using the first isolate are generally comparable to cumulative antimicrobial susceptibility test data calculated by other methods, providing duplicate isolates are excluded.
M39-A4 Analysis and Presentation of Cumulative Antimicrobial Susceptibility Test Data, 4th Edition. CLSI, 2014. Chapter 6.4

This AMR package includes this methodology with the first_isolate() function and is able to apply the four different methods as defined by Hindler et al. in 2007: phenotype-based, episode-based, patient-based, isolate-based. The right method depends on your goals and analysis, but the default phenotype-based method is in any case the method to properly correct for most duplicate isolates. This method also takes into account the antimicrobial susceptibility test results using all_microbials(). Read more about the methods on the first_isolate() page.

The outcome of the function can easily be added to our data:

data <- data %>% 
  mutate(first = first_isolate(info = TRUE))
# Determining first isolates using an episode length of 365 days
# ℹ Using column 'bacteria' as input for `col_mo`.
# ℹ Using column 'date' as input for `col_date`.
# ℹ Using column 'patient_id' as input for `col_patient_id`.
# Basing inclusion on all antimicrobial results, using a points threshold of
# 2
<<<<<<< HEAD
# => Found 10,616 'phenotype-based' first isolates (53.1% of total where a
#    microbial ID was available)

So only 53.1% is suitable for resistance analysis! We can now filter on it with the filter() function, also from the dplyr package:

======= # => Found 10,541 'phenotype-based' first isolates (52.7% of total where a # microbial ID was available)

So only 52.7% is suitable for resistance analysis! We can now filter on it with the filter() function, also from the dplyr package:

>>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
data_1st <- data %>% 
  filter(first == TRUE)

For future use, the above two syntaxes can be shortened:

data_1st <- data %>% 
  filter_first_isolate()
<<<<<<< HEAD

So we end up with 10,616 isolates for analysis. Now our data looks like:

=======

So we end up with 10,541 isolates for analysis. Now our data looks like:

>>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
head(data_1st)
<<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
date patient_id hospital bacteria AMX AMC CIP GEN gender gramstain genus species first
1 2014-06-27 G7 Hospital B B_ESCHR_COLI S S S S M5 2010-05-21 T10 Hospital A B_ESCHR_COLI S S S S FGram-negative Escherichia coli TRUE
2 2014-02-01 H10 Hospital B B_STRPT_PNMN R R7 2016-10-03 O8 Hospital C B_ESCHR_COLI S S SS R M Gram-positive Streptococcus pneumoniae TRUE
3 2011-05-09 V28 2014-09-09 X6Hospital C B_ESCHR_COLI R R S S F Gram-negative Escherichia coli TRUE
6 2017-06-26 D7 Hospital B B_ESCHR_COLI9 2015-06-26 E8 Hospital D B_STPHY_AURS SS S S R M Gram-positive Staphylococcus aureus TRUE
7 2013-09-19 U8 Hospital B B_ESCHR_COLI S S R S F Gram-negative Escherichia coli TRUE
9 2012-08-01 I2 Hospital D B_STPHY_AURS S S S S M11 2012-07-01 N5 Hospital A B_STPHY_AURS S S S S M Gram-positive Staphylococcus aureus TRUE
12 2015-10-24 Y10 Hospital A B_STPHY_AURS R S S R FGram-positive Staphylococcus aureus TRUE

Time for the analysis!

Analysing the data

You might want to start by getting an idea of how the data is distributed. It’s an important start, because it also decides how you will continue your analysis. Although this package contains a convenient function to make frequency tables, exploratory data analysis (EDA) is not the primary scope of this package. Use a package like DataExplorer for that, or read the free online book Exploratory Data Analysis with R by Roger D. Peng.

Dispersion of species

To just get an idea how the species are distributed, create a frequency table with our freq() function. We created the genus and species column earlier based on the microbial ID. With paste(), we can concatenate them together.

The freq() function can be used like the base R language was intended:

freq(paste(data_1st$genus, data_1st$species))

Or can be used like the dplyr way, which is easier readable:

data_1st %>% freq(genus, species)

Frequency table

Class: character
<<<<<<< HEAD Length: 10,616
Available: 10,616 (100%, NA: 0 = 0%)
======= Length: 10,541
Available: 10,541 (100%, NA: 0 = 0%)
>>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f Unique: 4

Shortest: 16
Longest: 24

<<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
Item Count Percent Cum. Count Cum. Percent
1 Escherichia coli4,673 44.02% 4,673 44.02%4,575 43.40% 4,575 43.40%
2 Staphylococcus aureus2,710 25.53% 7,383 69.55%2,683 25.45% 7,258 68.85%
3 Streptococcus pneumoniae2,068 19.48% 9,451 89.03%2,126 20.17% 9,384 89.02%
4 Klebsiella pneumoniae1,165 10.97% 10,6161,157 10.98% 10,541100.00%

Overview of different bug/drug combinations

Using tidyverse selections, you can also select or filter columns based on the antibiotic class they are in:

data_1st %>% 
  filter(any(aminoglycosides() == "R"))
# ℹ For `aminoglycosides()` using column 'GEN' (gentamicin)
<<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
date patient_id hospital bacteria AMX AMC CIP GEN gender gramstain genus species first
2014-02-01 H10 Hospital B B_STRPT_PNMN R R S R M Gram-positive Streptococcus pneumoniae TRUE
2017-06-26 D7 Hospital B B_ESCHR_COLI S S2015-10-24 Y10 Hospital A B_STPHY_AURS R S S R F Gram-positive Staphylococcus aureus TRUE
2017-06-23 E1 Hospital A B_STRPT_PNMNS S R R M Gram-negative Escherichia coli TRUE
2012-06-14 G7 Hospital B2011-11-15 J9 Hospital B B_ESCHR_COLI S S S R M Gram-negative Escherichia coli TRUE
2010-10-03 D8 Hospital CB_STRPT_PNMN R R S R M Gram-positive Streptococcus pneumoniae TRUE
2016-05-08 K4 Hospital D B_STRPT_PNMN S
2010-05-24 E1 Hospital B B_ESCHR_COLI RS S R M Gram-positive Streptococcus pneumoniae TRUE
2015-03-03 G4 Hospital B B_STRPT_PNMN S S S R M Gram-positive Streptococcus pneumoniae TRUE
2016-11-20 D1 Hospital A B_STRPT_PNMN
2010-08-26 D4 Hospital A B_ESCHR_COLIS S S R M Gram-negative Escherichia coli TRUE

If you want to get a quick glance of the number of isolates in different bug/drug combinations, you can use the bug_drug_combinations() function:

data_1st %>% 
  bug_drug_combinations() %>% 
  head() # show first 6 rows
# ℹ Using column 'bacteria' as input for `col_mo`.
<<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
mo ab S I R total
E. coli AMX2205 120 2348 46732154 135 2286 4575
E. coli AMC3462 158 1053 46733356 158 1061 4575
E. coli CIP3424 0 1249 46733342 0 1233 4575
E. coli GEN4079 0 594 46734034 0 541 4575
K. pneumoniae AMX 0 01165 11651157 1157
K. pneumoniae AMC940 45 180 1165887 46 224 1157
# ℹ For `aminoglycosides()` using column 'GEN' (gentamicin)
# ℹ Using column 'bacteria' as input for `col_mo`.
<<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f <<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
mo ab S I R total
E. coli GEN4079 0 594 46734034 0 541 4575
K. pneumoniae GEN1058 0 107 11651050 0 107 1157
S. aureus GEN2429 0 281 27102386 0 297 2683
S. pneumoniae GEN 0 02068 20682126 2126

This will only give you the crude numbers in the data. To calculate antimicrobial resistance in a more sensible way, also by correcting for too few results, we use the resistance() and susceptibility() functions.

Resistance percentages

The functions resistance() and susceptibility() can be used to calculate antimicrobial resistance or susceptibility. For more specific analyses, the functions proportion_S(), proportion_SI(), proportion_I(), proportion_IR() and proportion_R() can be used to determine the proportion of a specific antimicrobial outcome.

All these functions contain a minimum argument, denoting the minimum required number of test results for returning a value. These functions will otherwise return NA. The default is minimum = 30, following the CLSI M39-A4 guideline for applying microbial epidemiology.

As per the EUCAST guideline of 2019, we calculate resistance as the proportion of R (proportion_R(), equal to resistance()) and susceptibility as the proportion of S and I (proportion_SI(), equal to susceptibility()). These functions can be used on their own:

data_1st %>% resistance(AMX)
<<<<<<< HEAD
# [1] 0.5451206

Or can be used in conjunction with group_by() and summarise(), both from the dplyr package:

======= # [1] 0.5432122

Or can be used in conjunction with group_by() and summarise(), both from the dplyr package:

>>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
data_1st %>% 
  group_by(hospital) %>% 
  summarise(amoxicillin = resistance(AMX))
<<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
hospital amoxicillin
Hospital A0.5451684
Hospital B 0.5455526
Hospital C 0.5361146
Hospital D 0.55110690.5326923
Hospital B 0.5487608
Hospital C 0.5426866
Hospital D 0.5496559

Of course it would be very convenient to know the number of isolates responsible for the percentages. For that purpose the n_rsi() can be used, which works exactly like n_distinct() from the dplyr package. It counts all isolates available for every group (i.e. values S, I or R):

data_1st %>% 
  group_by(hospital) %>% 
  summarise(amoxicillin = resistance(AMX),
            available = n_rsi(AMX))
<<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
hospital amoxicillin available
Hospital A0.5451684 3177
Hospital B 0.5455526 3710
Hospital C 0.5361146 1606
Hospital D 0.5511069 21230.5326923 3120
Hospital B 0.5487608 3712
Hospital C 0.5426866 1675
Hospital D 0.5496559 2034

These functions can also be used to get the proportion of multiple antibiotics, to calculate empiric susceptibility of combination therapies very easily:

data_1st %>% 
  group_by(genus) %>% 
  summarise(amoxiclav = susceptibility(AMC),
            gentamicin = susceptibility(GEN),
            amoxiclav_genta = susceptibility(AMC, GEN))
<<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
genus amoxiclav gentamicin amoxiclav_genta
Escherichia0.7746630 0.8728868 0.9779585
Klebsiella 0.8454936 0.9081545 0.9896996
Staphylococcus 0.7874539 0.8963100 0.9797048
Streptococcus 0.5357834 0.0000000 0.53578340.7680874 0.8817486 0.9803279
Klebsiella 0.8063959 0.9075194 0.9732066
Staphylococcus 0.7968692 0.8893030 0.9776370
Streptococcus 0.5371590 0.0000000 0.5371590

Or if you are curious for the resistance within certain antibiotic classes, use a antibiotic class selector such as penicillins(), which automatically will include the columns AMX and AMC of our data:

data_1st %>% 
  # group by hospital
  group_by(hospital) %>% 
  #                / -> select all penicillins in the data for calculation
  #                |              / -> use resistance() for all peni's per hospital
  #                |              |           / -> print as percentages
  summarise(across(penicillins(), resistance, as_percent = TRUE)) %>% 
  # format the antibiotic column names, using so-called snake case,
  # so 'Amoxicillin/clavulanic acid' becomes 'amoxicillin_clavulanic_acid'
  rename_with(set_ab_names, penicillins())
<<<<<<< HEAD ======= >>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
hospital amoxicillin amoxicillin_clavulanic_acid
Hospital A54.5% 26.5%
Hospital B 54.6% 25.9%
Hospital C 53.6% 25.3%
Hospital D 55.1% 26.4%53.3% 25.1%
Hospital B 54.9% 28.0%
Hospital C 54.3% 27.9%
Hospital D 55.0% 25.8%

To make a transition to the next part, let’s see how differences in the previously calculated combination therapies could be plotted:

data_1st %>% 
  group_by(genus) %>% 
  summarise("1. Amoxi/clav" = susceptibility(AMC),
            "2. Gentamicin" = susceptibility(GEN),
            "3. Amoxi/clav + genta" = susceptibility(AMC, GEN)) %>% 
  # pivot_longer() from the tidyr package "lengthens" data:
  tidyr::pivot_longer(-genus, names_to = "antibiotic") %>% 
  ggplot(aes(x = genus,
             y = value,
             fill = antibiotic)) +
  geom_col(position = "dodge2")

Plots

To show results in plots, most R users would nowadays use the ggplot2 package. This package lets you create plots in layers. You can read more about it on their website. A quick example would look like these syntaxes:

ggplot(data = a_data_set,
       mapping = aes(x = year,
                     y = value)) +
  geom_col() +
  labs(title = "A title",
       subtitle = "A subtitle",
       x = "My X axis",
       y = "My Y axis")

# or as short as:
ggplot(a_data_set) +
  geom_bar(aes(year))

The AMR package contains functions to extend this ggplot2 package, for example geom_rsi(). It automatically transforms data with count_df() or proportion_df() and show results in stacked bars. Its simplest and shortest example:

ggplot(data_1st) +
  geom_rsi(translate_ab = FALSE)

Omit the translate_ab = FALSE to have the antibiotic codes (AMX, AMC, CIP, GEN) translated to official WHO names (amoxicillin, amoxicillin/clavulanic acid, ciprofloxacin, gentamicin).

If we group on e.g. the genus column and add some additional functions from our package, we can create this:

# group the data on `genus`
ggplot(data_1st %>% group_by(genus)) + 
  # create bars with genus on x axis
  # it looks for variables with class `rsi`,
  # of which we have 4 (earlier created with `as.rsi`)
  geom_rsi(x = "genus") + 
  # split plots on antibiotic
  facet_rsi(facet = "antibiotic") +
  # set colours to the R/SI interpretations (colour-blind friendly)
  scale_rsi_colours() +
  # show percentages on y axis
  scale_y_percent(breaks = 0:4 * 25) +
  # turn 90 degrees, to make it bars instead of columns
  coord_flip() +
  # add labels
  labs(title = "Resistance per genus and antibiotic", 
       subtitle = "(this is fake data)") +
  # and print genus in italic to follow our convention
  # (is now y axis because we turned the plot)
  theme(axis.text.y = element_text(face = "italic"))

To simplify this, we also created the ggplot_rsi() function, which combines almost all above functions:

data_1st %>% 
  group_by(genus) %>%
  ggplot_rsi(x = "genus",
             facet = "antibiotic",
             breaks = 0:4 * 25,
             datalabels = FALSE) +
  coord_flip()

Plotting MIC and disk diffusion values

The AMR package also extends the plot() and ggplot2::autoplot() functions for plotting minimum inhibitory concentrations (MIC, created with as.mic()) and disk diffusion diameters (created with as.disk()).

With the random_mic() and random_disk() functions, we can generate sampled values for the new data types (S3 classes) <mic> and <disk>:

mic_values <- random_mic(size = 100)
mic_values
# Class <mic>
<<<<<<< HEAD
#   [1] 0.125   8       <=0.001 0.002   64      >=256   0.005   4       0.5    
#  [10] 0.002   <=0.001 0.01    0.01    0.25    128     0.002   >=256   0.005  
#  [19] 4       0.25    >=256   0.0625  64      0.002   0.0625  0.0625  2      
#  [28] 32      16      32      0.5     >=256   32      <=0.001 >=256   64     
#  [37] <=0.001 32      >=256   0.0625  0.025   8       1       0.002   <=0.001
#  [46] 0.01    2       0.005   128     0.025   0.125   0.5     0.01    0.0625 
#  [55] 2       0.005   64      2       2       4       8       4       0.5    
#  [64] 16      <=0.001 0.25    16      0.002   1       64      0.025   4      
#  [73] 0.005   0.002   0.01    32      0.025   0.01    0.025   0.025   64     
#  [82] 0.01    4       0.025   1       0.025   8       2       32      0.0625 
#  [91] 128     0.0625  16      128     4       >=256   64      0.125   <=0.001
# [100] 0.25
======= # [1] <=0.001 2 128 0.002 16 0.5 0.01 1 1 # [10] 0.25 2 0.025 0.01 0.0625 0.002 128 2 4 # [19] 0.005 1 0.005 0.125 256 0.01 <=0.001 0.0625 64 # [28] 0.002 0.125 32 0.002 0.0625 1 0.025 1 0.5 # [37] 0.01 0.25 128 16 0.125 8 4 2 64 # [46] 2 0.125 128 8 64 0.0625 0.005 32 64 # [55] 128 32 0.125 16 0.025 0.5 64 0.5 0.0625 # [64] 0.025 0.025 32 16 0.01 0.125 0.0625 1 0.125 # [73] 128 4 0.005 2 0.125 128 256 2 8 # [82] 2 0.125 0.125 64 0.01 <=0.001 0.002 0.25 0.002 # [91] 0.25 0.005 0.005 0.002 0.5 0.25 2 0.5 0.125 # [100] 32
>>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
# base R:
plot(mic_values)

# ggplot2:
autoplot(mic_values)

But we could also be more specific, by generating MICs that are likely to be found in E. coli for ciprofloxacin:

mic_values <- random_mic(size = 100, mo = "E. coli", ab = "cipro")

For the plot() and autoplot() function, we can define the microorganism and an antimicrobial agent the same way. This will add the interpretation of those values according to a chosen guidelines (defaults to the latest EUCAST guideline).

Default colours are colour-blind friendly, while maintaining the convention that e.g. ‘susceptible’ should be green and ‘resistant’ should be red:

# base R:
plot(mic_values, mo = "E. coli", ab = "cipro")

# ggplot2:
autoplot(mic_values, mo = "E. coli", ab = "cipro")

For disk diffusion values, there is not much of a difference in plotting:

disk_values <- random_disk(size = 100, mo = "E. coli", ab = "cipro")
# ℹ Function `as.mo()` is uncertain about "E. coli" (assuming Escherichia
#   coli). Run `mo_uncertainties()` to review this.
disk_values
# Class <disk>
<<<<<<< HEAD
#   [1] 29 26 29 16 27 26 25 16 25 27 21 26 29 17 21 18 27 18 31 29 19 23 25 20 30
#  [26] 22 28 18 21 29 30 29 23 27 16 16 28 18 16 22 29 31 17 27 21 28 29 24 19 24
#  [51] 28 27 16 23 30 18 30 22 21 22 16 20 16 25 28 29 23 29 30 17 29 17 18 24 21
#  [76] 17 18 18 29 18 25 16 18 27 26 28 25 20 21 18 18 24 30 18 18 24 22 24 25 28
======= # [1] 29 25 25 22 27 25 25 27 17 28 24 22 29 25 31 25 16 27 24 22 26 22 27 25 17 # [26] 18 29 16 31 21 27 19 24 18 30 28 18 30 18 20 19 26 31 18 22 18 25 31 28 28 # [51] 25 20 31 31 31 24 18 17 20 20 27 28 18 24 25 26 20 18 16 27 27 22 17 31 17 # [76] 18 25 24 25 19 21 24 24 18 19 20 25 30 19 20 16 30 21 26 18 26 21 29 26 27
>>>>>>> 8c9feea087f568fd4abbdb325140d1d628e6856f
# base R:
plot(disk_values, mo = "E. coli", ab = "cipro")

And when using the ggplot2 package, but now choosing the latest implemented CLSI guideline (notice that the EUCAST-specific term “Susceptible, incr. exp.” has changed to “Intermediate”):

autoplot(disk_values,
       mo = "E. coli",
       ab = "cipro",
       guideline = "CLSI")

Independence test

The next example uses the example_isolates data set. This is a data set included with this package and contains 2,000 microbial isolates with their full antibiograms. It reflects reality and can be used to practice AMR data analysis.

We will compare the resistance to fosfomycin (column FOS) in hospital A and D. The input for the fisher.test() can be retrieved with a transformation like this:

# use package 'tidyr' to pivot data:
library(tidyr)

check_FOS <- example_isolates %>%
  filter(hospital_id %in% c("A", "D")) %>% # filter on only hospitals A and D
  select(hospital_id, FOS) %>%             # select the hospitals and fosfomycin
  group_by(hospital_id) %>%                # group on the hospitals
  count_df(combine_SI = TRUE) %>%          # count all isolates per group (hospital_id)
  pivot_wider(names_from = hospital_id,    # transform output so A and D are columns
              values_from = value) %>%     
  select(A, D) %>%                         # and only select these columns
  as.matrix()                              # transform to a good old matrix for fisher.test()

check_FOS
#       A  D
# [1,] 25 77
# [2,] 24 33

We can apply the test now with:

# do Fisher's Exact Test
fisher.test(check_FOS)                            
# 
#   Fisher's Exact Test for Count Data
# 
# data:  check_FOS
# p-value = 0.03104
# alternative hypothesis: true odds ratio is not equal to 1
# 95 percent confidence interval:
#  0.2111489 0.9485124
# sample estimates:
# odds ratio 
#  0.4488318

As can be seen, the p value is 0.031, which means that the fosfomycin resistance found in isolates from patients in hospital A and D are really different.