Skip to contents

Calculates a normalised mean for antimicrobial resistance between multiple observations, to help to identify similar isolates without comparing antibiograms by hand.

Usage

mean_amr_distance(x, ...)

# S3 method for sir
mean_amr_distance(x, ..., combine_SI = TRUE)

# S3 method for data.frame
mean_amr_distance(x, ..., combine_SI = TRUE)

amr_distance_from_row(amr_distance, row)

Arguments

x

a vector of class sir, mic or disk, or a data.frame containing columns of any of these classes

...

variables to select (supports tidyselect language such as column1:column4 and where(is.mic), and can thus also be antibiotic selectors

combine_SI

a logical to indicate whether all values of S and I must be merged into one, so the input only consists of S+I vs. R (susceptible vs. resistant) - the default is TRUE

amr_distance

the outcome of mean_amr_distance()

row

an index, such as a row number

Details

The mean AMR distance is effectively the Z-score; a normalised numeric value to compare AMR test results which can help to identify similar isolates, without comparing antibiograms by hand.

MIC values (see as.mic()) are transformed with log2() first; their distance is thus calculated as (log2(x) - mean(log2(x))) / sd(log2(x)).

SIR values (see as.sir()) are transformed using "S" = 1, "I" = 2, and "R" = 3. If combine_SI is TRUE (default), the "I" will be considered to be 1.

For data sets, the mean AMR distance will be calculated per column, after which the mean per row will be returned, see Examples.

Use amr_distance_from_row() to subtract distances from the distance of one row, see Examples.

Interpretation

Isolates with distances less than 0.01 difference from each other should be considered similar. Differences lower than 0.025 should be considered suspicious.

Examples

sir <- random_sir(10)
sir
#> Class 'sir'
#>  [1] R R S I I S I I R I
mean_amr_distance(sir)
#>  [1]  1.449138  1.449138 -0.621059 -0.621059 -0.621059 -0.621059 -0.621059
#>  [8] -0.621059  1.449138 -0.621059

mic <- random_mic(10)
mic
#> Class 'mic'
#>  [1] 0.002 0.5   0.125 128   0.25  0.5   256   0.125 0.125 64   
mean_amr_distance(mic)
#>  [1] -1.6429088 -0.1673475 -0.5378223  1.3145519 -0.3525849 -0.1673475
#>  [7]  1.4997893 -0.5378223 -0.5378223  1.1293145
# equal to the Z-score of their log2:
(log2(mic) - mean(log2(mic))) / sd(log2(mic))
#>  [1] -1.6429088 -0.1673475 -0.5378223  1.3145519 -0.3525849 -0.1673475
#>  [7]  1.4997893 -0.5378223 -0.5378223  1.1293145

disk <- random_disk(10)
disk
#> Class 'disk'
#>  [1] 40 45 43 14 42 40 37 15 42 11
mean_amr_distance(disk)
#>  [1]  0.5182957  0.8832927  0.7372939 -1.3796886  0.6642945  0.5182957
#>  [7]  0.2992975 -1.3066892  0.6642945 -1.5986868

y <- data.frame(
  id = LETTERS[1:10],
  amox = random_sir(10, ab = "amox", mo = "Escherichia coli"),
  cipr = random_disk(10, ab = "cipr", mo = "Escherichia coli"),
  gent = random_mic(10, ab = "gent", mo = "Escherichia coli"),
  tobr = random_mic(10, ab = "tobr", mo = "Escherichia coli")
)
y
#>    id amox cipr  gent  tobr
#> 1   A    R   17 <=0.5   >=8
#> 2   B    I   26 <=0.5     4
#> 3   C    R   18     4   >=8
#> 4   D    R   22 <=0.5 <=0.5
#> 5   E    I   30 <=0.5     1
#> 6   F    S   18     4     2
#> 7   G    I   26     8     2
#> 8   H    S   29     8     1
#> 9   I    I   22    16     1
#> 10  J    S   31     1     4
mean_amr_distance(y)
#> ℹ Calculating mean AMR distance based on columns "amox", "cipr", "gent",
#>   and "tobr"
#>  [1]  0.12957466 -0.14083442  0.55230568 -0.36152662 -0.31478853 -0.33012168
#>  [7]  0.17672648  0.13748045 -0.07163669  0.22282068
y$amr_distance <- mean_amr_distance(y, where(is.mic))
#> Error in .subset(x, j): invalid subscript type 'list'
y[order(y$amr_distance), ]
#> Error in order(y$amr_distance): argument 1 is not a vector

if (require("dplyr")) {
  y %>%
    mutate(
      amr_distance = mean_amr_distance(y),
      check_id_C = amr_distance_from_row(amr_distance, id == "C")
    ) %>%
    arrange(check_id_C)
}
#> ℹ Calculating mean AMR distance based on columns "amox", "cipr", "gent",
#>   and "tobr"
#>    id amox cipr  gent  tobr amr_distance check_id_C
#> 1   C    R   18     4   >=8   0.55230568  0.0000000
#> 2   J    S   31     1     4   0.22282068  0.3294850
#> 3   G    I   26     8     2   0.17672648  0.3755792
#> 4   H    S   29     8     1   0.13748045  0.4148252
#> 5   A    R   17 <=0.5   >=8   0.12957466  0.4227310
#> 6   I    I   22    16     1  -0.07163669  0.6239424
#> 7   B    I   26 <=0.5     4  -0.14083442  0.6931401
#> 8   E    I   30 <=0.5     1  -0.31478853  0.8670942
#> 9   F    S   18     4     2  -0.33012168  0.8824274
#> 10  D    R   22 <=0.5 <=0.5  -0.36152662  0.9138323
if (require("dplyr")) {
  # support for groups
  example_isolates %>%
    filter(mo_genus() == "Enterococcus" & mo_species() != "") %>%
    select(mo, TCY, carbapenems()) %>%
    group_by(mo) %>%
    mutate(dist = mean_amr_distance(.)) %>%
    arrange(mo, dist)
}
#> ℹ Using column 'mo' as input for mo_genus()
#> ℹ Using column 'mo' as input for mo_species()
#> ℹ For carbapenems() using columns 'IPM' (imipenem) and 'MEM' (meropenem)
#> ℹ Calculating mean AMR distance based on columns "TCY", "IPM", and "MEM"
#> # A tibble: 63 × 5
#> # Groups:   mo [4]
#>    mo           TCY   IPM   MEM     dist
#>    <mo>         <sir> <sir> <sir>  <dbl>
#>  1 B_ENTRC_AVIM S     S     NA     0    
#>  2 B_ENTRC_AVIM S     S     NA     0    
#>  3 B_ENTRC_CSSL NA    S     NA    NA    
#>  4 B_ENTRC_FACM S     S     NA    -2.66 
#>  5 B_ENTRC_FACM S     R     R     -0.423
#>  6 B_ENTRC_FACM S     R     R     -0.423
#>  7 B_ENTRC_FACM NA    R     R      0.224
#>  8 B_ENTRC_FACM NA    R     R      0.224
#>  9 B_ENTRC_FACM NA    R     R      0.224
#> 10 B_ENTRC_FACM NA    R     R      0.224
#> # ℹ 53 more rows