AMR/man/microorganisms.codes.Rd

39 lines
1.6 KiB
Plaintext
Raw Normal View History

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/data.R
\docType{data}
2019-01-21 15:53:01 +01:00
\name{microorganisms.codes}
\alias{microorganisms.codes}
2023-06-26 13:52:02 +02:00
\title{Data Set with 4 946 Common Microorganism Codes}
2020-03-14 14:05:43 +01:00
\format{
2023-06-26 13:52:02 +02:00
A \link[tibble:tibble]{tibble} with 4 946 observations and 2 variables:
\itemize{
\item \code{code}\cr Commonly used code of a microorganism
\item \code{mo}\cr ID of the microorganism in the \link{microorganisms} data set
2020-03-14 14:05:43 +01:00
}
}
\usage{
2019-01-21 15:53:01 +01:00
microorganisms.codes
}
\description{
2020-02-09 22:04:29 +01:00
A data set containing commonly used codes for microorganisms, from laboratory systems and WHONET. Define your own with \code{\link[=set_mo_source]{set_mo_source()}}. They will all be searched when using \code{\link[=as.mo]{as.mo()}} and consequently all the \code{\link[=mo_property]{mo_*}} functions.
}
2022-08-27 20:49:37 +02:00
\details{
Like all data sets in this package, this data set is publicly available for download in the following formats: R, MS Excel, Apache Feather, Apache Parquet, SPSS, SAS, and Stata. Please visit \href{https://msberends.github.io/AMR/articles/datasets.html}{our website for the download links}. The actual files are of course available on \href{https://github.com/msberends/AMR/tree/main/data-raw}{our GitHub repository}.
2020-08-21 11:40:13 +02:00
}
2022-08-21 16:37:20 +02:00
\examples{
2022-08-27 20:49:37 +02:00
microorganisms.codes
2023-05-27 10:39:22 +02:00
# 'ECO' or 'eco' is the WHONET code for E. coli:
microorganisms.codes[microorganisms.codes$code == "ECO", ]
# and therefore, 'eco' will be understood as E. coli in this package:
mo_info("eco")
# works for all AMR functions:
mo_is_intrinsic_resistant("eco", ab = "vancomycin")
2019-01-02 23:24:07 +01:00
}
\seealso{
\code{\link[=as.mo]{as.mo()}} \link{microorganisms}
}
\keyword{datasets}