1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-08 23:21:56 +02:00

(v0.7.1.9069) documentation update

This commit is contained in:
2019-09-01 13:16:57 +02:00
parent 88ee1b7268
commit c7be72f0ce
20 changed files with 251 additions and 180 deletions

View File

@ -1,4 +1,5 @@
# AMR 0.7.1.9068
# AMR 0.7.1.9069
<small>Last updated: 01-Sep-2019</small>
### Breaking
* Determination of first isolates now **excludes** all 'unknown' microorganisms at default, i.e. microbial code `"UNKNOWN"`. They can be included with the new parameter `include_unknown`:
@ -26,7 +27,7 @@
### New
* Function `bug_drug_combinations()` to quickly get a `data.frame` with the antimicrobial resistance of any bug-drug combination in a data set:
```r
x <- bug_drug_combinations(septic_patients)
x <- bug_drug_combinations(example_isolates)
x
#> ab mo S I R total
#> 1 AMC B_ESCHR_COL 332 74 61 467
@ -65,7 +66,7 @@
```r
# (run this on your own console, as this page does not support colour printing)
library(dplyr)
septic_patients %>%
example_isolates %>%
select(mo:AMC) %>%
as_tibble()
```