mirror of
https://github.com/msberends/AMR.git
synced 2025-07-09 03:22:00 +02:00
(v1.5.0.9015) unit test fix, grouped first isolates
This commit is contained in:
@ -29,8 +29,8 @@ options(knitr.kable.NA = '')
|
||||
structure_txt <- function(dataset) {
|
||||
paste0("A data set with ",
|
||||
format(nrow(dataset), big.mark = ","), " rows and ",
|
||||
ncol(dataset), " columns, containing the following column names: \n*",
|
||||
paste0("'", colnames(dataset), "'", collapse = ", "), "*.")
|
||||
ncol(dataset), " columns, containing the following column names: \n",
|
||||
AMR:::vector_or(colnames(dataset), quotes = "*", last_sep = " and "), ".")
|
||||
}
|
||||
|
||||
download_txt <- function(filename) {
|
||||
@ -172,7 +172,7 @@ This data set is in R available as `antibiotics`, after you load the `AMR` packa
|
||||
|
||||
This data set contains all EARS-Net and ATC codes gathered from WHO and WHONET, and all compound IDs from PubChem. It also contains all brand names (synonyms) as found on PubChem and Defined Daily Doses (DDDs) for oral and parenteral administration.
|
||||
|
||||
* [ATC/DDD index from WHO Collaborating Centre for Drug Statistics Methodology](https://www.whocc.no/atc_ddd_index/) (note: this may not be used for commercial purposes, but is frelly available from the WHO CC website for personal use)
|
||||
* [ATC/DDD index from WHO Collaborating Centre for Drug Statistics Methodology](https://www.whocc.no/atc_ddd_index/) (note: this may not be used for commercial purposes, but is freely available from the WHO CC website for personal use)
|
||||
* [PubChem by the US National Library of Medicine](https://pubchem.ncbi.nlm.nih.gov)
|
||||
* [WHONET software 2019](https://whonet.org)
|
||||
|
||||
@ -197,7 +197,7 @@ This data set is in R available as `antivirals`, after you load the `AMR` packag
|
||||
|
||||
This data set contains all ATC codes gathered from WHO and all compound IDs from PubChem. It also contains all brand names (synonyms) as found on PubChem and Defined Daily Doses (DDDs) for oral and parenteral administration.
|
||||
|
||||
* [ATC/DDD index from WHO Collaborating Centre for Drug Statistics Methodology](https://www.whocc.no/atc_ddd_index/) (note: this may not be used for commercial purposes, but is frelly available from the WHO CC website for personal use)
|
||||
* [ATC/DDD index from WHO Collaborating Centre for Drug Statistics Methodology](https://www.whocc.no/atc_ddd_index/) (note: this may not be used for commercial purposes, but is freely available from the WHO CC website for personal use)
|
||||
* [PubChem by the US National Library of Medicine](https://pubchem.ncbi.nlm.nih.gov)
|
||||
|
||||
### Example content
|
||||
@ -218,7 +218,7 @@ This data set is in R available as `intrinsic_resistant`, after you load the `AM
|
||||
|
||||
### Source
|
||||
|
||||
This data set contains all defined intrinsic resistance by EUCAST of all bug-drug combinations, and is based on '`r AMR:::EUCAST_VERSION_EXPERT_RULES[["3.2"]]$title`', `r AMR:::EUCAST_VERSION_EXPERT_RULES[["3.2"]]$version_txt` from `r AMR:::EUCAST_VERSION_EXPERT_RULES[["3.2"]]$year`.
|
||||
This data set contains all defined intrinsic resistance by EUCAST of all bug-drug combinations, and is based on `r AMR:::format_eucast_version_nr("3.2")`.
|
||||
|
||||
### Example content
|
||||
|
||||
|
Reference in New Issue
Block a user