Skip to contents

Determine antimicrobial resistance (AMR) of all bug-drug combinations in your data set where at least 30 (default) isolates are available per species. Use format() on the result to prettify it to a publishable/printable format, see Examples.

Usage

bug_drug_combinations(x, col_mo = NULL, FUN = mo_shortname, ...)

# S3 method for bug_drug_combinations
format(
  x,
  translate_ab = "name (ab, atc)",
  language = get_AMR_locale(),
  minimum = 30,
  combine_SI = TRUE,
  add_ab_group = TRUE,
  remove_intrinsic_resistant = FALSE,
  decimal.mark = getOption("OutDec"),
  big.mark = ifelse(decimal.mark == ",", ".", ","),
  ...
)

Arguments

x

a data set with antibiotic columns, such as amox, AMX and AMC

col_mo

column name of the names or codes of the microorganisms (see as.mo()), defaults to the first column of class mo. Values will be coerced using as.mo().

FUN

the function to call on the mo column to transform the microorganism codes, defaults to mo_shortname()

...

arguments passed on to FUN

translate_ab

a character of length 1 containing column names of the antibiotics data set

language

language of the returned text, defaults to system language (see get_AMR_locale()) and can also be set with the option AMR_locale. Use language = NULL or language = "" to prevent translation.

minimum

the minimum allowed number of available (tested) isolates. Any isolate count lower than minimum will return NA with a warning. The default number of 30 isolates is advised by the Clinical and Laboratory Standards Institute (CLSI) as best practice, see Source.

combine_SI

a logical to indicate whether values S and I should be summed, so resistance will be based on only R, defaults to TRUE

add_ab_group

a logical to indicate where the group of the antimicrobials must be included as a first column

remove_intrinsic_resistant

logical to indicate that rows and columns with 100% resistance for all tested antimicrobials must be removed from the table

decimal.mark

the character to be used to indicate the numeric decimal point.

big.mark

character; if not empty used as mark between every big.interval decimals before (hence big) the decimal point.

Value

The function bug_drug_combinations() returns a data.frame with columns "mo", "ab", "S", "I", "R" and "total".

Details

The function format() calculates the resistance per bug-drug combination. Use combine_SI = TRUE (default) to test R vs. S+I and combine_SI = FALSE to test R+I vs. S.

Examples

# example_isolates is a data set available in the AMR package.
# run ?example_isolates for more info.
example_isolates
#> # A tibble: 2,000 × 46
#>    date       patient   age gender ward     mo           PEN   OXA   FLC   AMX  
#>    <date>     <chr>   <dbl> <chr>  <chr>    <mo>         <sir> <sir> <sir> <sir>
#>  1 2002-01-02 A77334     65 F      Clinical B_ESCHR_COLI R     NA    NA    NA   
#>  2 2002-01-03 A77334     65 F      Clinical B_ESCHR_COLI R     NA    NA    NA   
#>  3 2002-01-07 067927     45 F      ICU      B_STPHY_EPDR R     NA    R     NA   
#>  4 2002-01-07 067927     45 F      ICU      B_STPHY_EPDR R     NA    R     NA   
#>  5 2002-01-13 067927     45 F      ICU      B_STPHY_EPDR R     NA    R     NA   
#>  6 2002-01-13 067927     45 F      ICU      B_STPHY_EPDR R     NA    R     NA   
#>  7 2002-01-14 462729     78 M      Clinical B_STPHY_AURS R     NA    S     R    
#>  8 2002-01-14 462729     78 M      Clinical B_STPHY_AURS R     NA    S     R    
#>  9 2002-01-16 067927     45 F      ICU      B_STPHY_EPDR R     NA    R     NA   
#> 10 2002-01-17 858515     79 F      ICU      B_STPHY_EPDR R     NA    S     NA   
#> # … with 1,990 more rows, and 36 more variables: AMC <sir>, AMP <sir>,
#> #   TZP <sir>, CZO <sir>, FEP <sir>, CXM <sir>, FOX <sir>, CTX <sir>,
#> #   CAZ <sir>, CRO <sir>, GEN <sir>, TOB <sir>, AMK <sir>, KAN <sir>,
#> #   TMP <sir>, SXT <sir>, NIT <sir>, FOS <sir>, LNZ <sir>, CIP <sir>,
#> #   MFX <sir>, VAN <sir>, TEC <sir>, TCY <sir>, TGC <sir>, DOX <sir>,
#> #   ERY <sir>, CLI <sir>, AZM <sir>, IPM <sir>, MEM <sir>, MTR <sir>,
#> #   CHL <sir>, COL <sir>, MUP <sir>, RIF <sir>

# \donttest{
x <- bug_drug_combinations(example_isolates)
head(x)
#> # A tibble: 6 × 6
#>   mo                ab        S     I     R total
#>   <chr>             <chr> <int> <int> <int> <int>
#> 1 (unknown species) S        14     0     1    15
#> 2 (unknown species) S1        0     0     1     1
#> 3 (unknown species) S10       0     0     0     0
#> 4 (unknown species) S11       0     0     0     0
#> 5 (unknown species) S12       0     0     0     0
#> 6 (unknown species) S13       0     0     0     0
#> Use 'format()' on this result to get a publishable/printable format.
format(x, translate_ab = "name (atc)")
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S", "S1", "S10", "S11", "S12", "S13", "S14", "S15", "S16", "S17",
#> "S18", "S19", "S2", "S20", "S21", "S22", "S23", "S24", "S25", "S26", "S27",
#> "S28", "S29", "S3", "S30", "S31", "S32", "S33", "S34", "S36", "S37", "S38",
#> "S39", "S4", "S5", "S6", "S7", "S8" and "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S34".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S8".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S10".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S7".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S11".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S13".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S20".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S33".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S1".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S2".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S21".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S22".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S23".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S24".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S26".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S28".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S36".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S38".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S39".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S12".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S14".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S15".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S16".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S17".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S18".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S19".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S25".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S27".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S29".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S3".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S30".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S31".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S32".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S37".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S4".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S5".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S6".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Warning: in as.ab(): these values could not be coerced to a valid antimicrobial
#> ID: "S9".
#> Error in (function (..., na.last = TRUE, decreasing = FALSE, method = c("auto",     "shell", "radix")) {    z <- list(...)    decreasing <- as.logical(decreasing)    if (length(z) == 1L && is.numeric(x <- z[[1L]]) && !is.object(x) &&         length(x) > 0) {        if (.Internal(sorted_fpass(x, decreasing, na.last)))             return(seq_along(x))    }    method <- match.arg(method)    if (any(vapply(z, is.object, logical(1L)))) {        z <- lapply(z, function(x) if (is.object(x))             as.vector(xtfrm(x))        else x)        return(do.call("order", c(z, list(na.last = na.last,             decreasing = decreasing, method = method))))    }    if (method == "auto") {        useRadix <- all(vapply(z, function(x) {            (is.numeric(x) || is.factor(x) || is.logical(x)) &&                 is.integer(length(x))        }, logical(1L)))        method <- if (useRadix)             "radix"        else "shell"    }    if (method != "radix" && !is.na(na.last)) {        if (length(decreasing) > 1L)             stop("'decreasing' of length > 1 is only for method = \"radix\"")        return(.Internal(order(na.last, decreasing, ...)))    }    if (method == "radix") {        decreasing <- rep_len(as.logical(decreasing), length(z))        return(.Internal(radixsort(na.last, decreasing, FALSE,             TRUE, ...)))    }    if (any(diff((l.z <- lengths(z)) != 0L)))         stop("argument lengths differ")    na <- vapply(z, is.na, rep.int(NA, l.z[1L]))    ok <- if (is.matrix(na))         rowSums(na) == 0L    else !any(na)    if (all(!ok))         return(integer())    z[[1L]][!ok] <- NA    ans <- do.call("order", c(z, list(decreasing = decreasing)))    ans[ok[ans]]})(NULL, NULL, NULL): argument 1 is not a vector

# Use FUN to change to transformation of microorganism codes
bug_drug_combinations(example_isolates,
  FUN = mo_gramstain
)
#> # A tibble: 80 × 6
#>    mo            ab        S     I     R total
#>  * <chr>         <chr> <int> <int> <int> <int>
#>  1 Gram-negative S         8     0   717   725
#>  2 Gram-negative S1        6     0     0     6
#>  3 Gram-negative S10     435     8   135   578
#>  4 Gram-negative S11     578     1    57   636
#>  5 Gram-negative S12     607     0    27   634
#>  6 Gram-negative S13     578     1    57   636
#>  7 Gram-negative S14     651     8    25   684
#>  8 Gram-negative S15     651     7    28   686
#>  9 Gram-negative S16     251     0     5   256
#> 10 Gram-negative S17       0     0    35    35
#> # … with 70 more rows
#> Use 'format()' on this result to get a publishable/printable format.

bug_drug_combinations(example_isolates,
  FUN = function(x) {
    ifelse(x == as.mo("Escherichia coli"),
      "E. coli",
      "Others"
    )
  }
)
#> # A tibble: 80 × 6
#>    mo      ab        S     I     R total
#>  * <chr>   <chr> <int> <int> <int> <int>
#>  1 E. coli S         0     0   467   467
#>  2 E. coli S1        0     0     0     0
#>  3 E. coli S10     347     4    26   377
#>  4 E. coli S11     448     0    11   459
#>  5 E. coli S12     449     0    11   460
#>  6 E. coli S13     448     0    11   459
#>  7 E. coli S14     451     0     9   460
#>  8 E. coli S15     450     0    12   462
#>  9 E. coli S16     171     0     0   171
#> 10 E. coli S17       0     0     0     0
#> # … with 70 more rows
#> Use 'format()' on this result to get a publishable/printable format.
# }