Data sets for download / own use
-24 May 2024
+30 May 2024
Source:vignettes/datasets.Rmd
datasets.Rmd
-
diff --git a/pkgdown.yml b/pkgdown.yml
index 5e06cfe7..be7679df 100644
--- a/pkgdown.yml
+++ b/pkgdown.yml
@@ -11,7 +11,7 @@ articles:
resistance_predict: resistance_predict.html
welcome_to_AMR: welcome_to_AMR.html
WHONET: WHONET.html
-last_built: 2024-05-24T13:10Z
+last_built: 2024-05-30T14:04Z
urls:
reference: https://msberends.github.io/AMR/reference
article: https://msberends.github.io/AMR/articles
diff --git a/reference/AMR-options.html b/reference/AMR-options.html
index f8a02b31..9ab2f285 100644
--- a/reference/AMR-options.html
+++ b/reference/AMR-options.html
@@ -10,7 +10,7 @@
AMR (for R)
- 2.1.1.9033
+ 2.1.1.9034
AMR 2.1.1.9033
+AMR 2.1.1.9034
(this beta version will eventually become v3.0. We’re happy to reach a new major milestone soon, which will be all about the new One Health support!)
-
A New Milestone: One Health Support (= Human + Veterinary + Environmental)
+A New Milestone: One Health Support (= Human + Veterinary + Environmental)
This package now supports not only tools for AMR data analysis in clinical settings, but also for veterinary and environmental microbiology. This was made possible through a collaboration with the University of Prince Edward Island, Canada. To celebrate this great improvement of the package, we also updated the package logo to reflect this change.
-
Breaking
+Breaking
- Removed all functions and references that used the deprecated
rsi
class, which were all replaced with theirsir
equivalents over a year ago
-
New
+New
- One Health implementation
- Function
as.sir()
now has extensive support for animal breakpoints from CLSI. Usebreakpoint_type = "animal"
and set thehost
argument to a variable that contains animal species names. - The
clinical_breakpoints
data set contains all these breakpoints, and can be downloaded on our download page.
@@ -187,12 +187,13 @@
- Function
mo_group_members()
to retrieve the member microorganisms of a microorganism group. For example,mo_group_members("Strep group C")
returns a vector of all microorganisms that are in that group.
- Function
-
Changed
+Changed
- For SIR interpretation, it is now possible to use column names for argument
ab
andmo
:as.sir(..., ab = "column1", mo = "column2")
. This greatly improves the flexibility for users. - For MICs:
- Added as valid levels: 4096, 6 powers of 0.0625, and 5 powers of 192 (192, 384, 576, 768, 960)
- Added new argument
keep_operators
toas.mic()
. This can be"all"
(default),"none"
, or"edges"
. This argument is also available in the newrescale_mic()
andscale_*_mic()
functions. - Comparisons of MIC values are now more strict. For example,
>32
is higher than (and never equal to)32
. Thus,as.mic(">32") == as.mic(32)
now returnsFALSE
, andas.mic(">32") > as.mic(32)
now returnsTRUE
.
+ - Sorting of MIC values (using
sort()
) was fixed in the same manner;<0.001
now gets sorted before0.001
, and>0.001
gets sorted after0.001
.
- Updated
italicise_taxonomy()
to support HTML output - @@ -206,7 +207,7 @@
- Improved overall algorithm of
as.ab()
for better performance and accuracy