AMR/man/abname.Rd

53 lines
1.8 KiB
Plaintext
Raw Normal View History

2018-02-21 12:10:00 +01:00
% Generated by roxygen2: do not edit by hand
2018-08-13 11:00:53 +02:00
% Please edit documentation in R/abname.R
2018-02-21 12:10:00 +01:00
\name{abname}
\alias{abname}
\title{Name of an antibiotic}
\source{
\code{\link{antibiotics}}
2018-02-21 12:10:00 +01:00
}
\usage{
2018-08-11 21:30:00 +02:00
abname(abcode, from = c("guess", "atc", "molis", "umcg"),
to = "official", textbetween = " + ", tolower = FALSE)
2018-02-21 12:10:00 +01:00
}
\arguments{
2018-02-26 15:53:09 +01:00
\item{abcode}{a code or name, like \code{"AMOX"}, \code{"AMCL"} or \code{"J01CA04"}}
2018-02-21 12:10:00 +01:00
2018-08-13 11:00:53 +02:00
\item{from, to}{type to transform from and to. See \code{\link{antibiotics}} for its column names. WIth \code{from = "guess"} the from will be guessed from \code{"atc"}, \code{"molis"} and \code{"umcg"}. When using \code{to = "atc"}, the ATC code will be searched using \code{\link{guess_atc}}.}
2018-02-21 12:10:00 +01:00
\item{textbetween}{text to put between multiple returned texts}
\item{tolower}{return output as lower case with function \code{\link{tolower}}.}
}
\description{
Convert antibiotic codes (from a laboratory information system like MOLIS or GLIMS) to a (trivial) antibiotic name or ATC code, or vice versa. This uses the data from \code{\link{antibiotics}}.
2018-02-21 12:10:00 +01:00
}
\examples{
abname("AMCL")
# "amoxicillin and enzyme inhibitor"
2018-08-13 11:00:53 +02:00
# It is quite flexible at default (having `from = "guess"`)
abname(c("amox", "J01CA04", "Trimox", "dispermox", "Amoxil"))
# "Amoxicillin" "Amoxicillin" "Amoxicillin" "Amoxicillin" "Amoxicillin"
# Multiple antibiotics can be combined with "+".
# The second antibiotic will be set to lower case when `tolower` was not set:
abname("AMCL+GENT", textbetween = "/")
# "amoxicillin and enzyme inhibitor/gentamicin"
2018-02-21 12:10:00 +01:00
abname(c("AMCL", "GENT"))
2018-08-13 11:00:53 +02:00
# "Amoxicillin and beta-lactamase inhibitor" "Gentamicin"
2018-02-21 12:10:00 +01:00
2018-02-26 15:53:09 +01:00
abname("AMCL", to = "trivial_nl")
2018-02-21 12:10:00 +01:00
# "Amoxicilline/clavulaanzuur"
abname("AMCL", to = "atc")
# "J01CR02"
2018-08-13 11:00:53 +02:00
# specific codes for University Medical Center Groningen (UMCG):
2018-02-21 12:10:00 +01:00
abname("J01CR02", from = "atc", to = "umcg")
# "AMCL"
}
\keyword{ab}
\keyword{antibiotics}