mirror of https://github.com/msberends/AMR.git
37 lines
953 B
R
Executable File
37 lines
953 B
R
Executable File
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/classes.R
|
|
\name{as.rsi}
|
|
\alias{as.rsi}
|
|
\alias{is.rsi}
|
|
\title{Class 'rsi'}
|
|
\usage{
|
|
as.rsi(x)
|
|
|
|
is.rsi(x)
|
|
}
|
|
\arguments{
|
|
\item{x}{vector}
|
|
}
|
|
\value{
|
|
Ordered factor with new class \code{rsi} and new attribute \code{package}
|
|
}
|
|
\description{
|
|
This transforms a vector to a new class \code{rsi}, which is an ordered factor with levels \code{S < I < R}. Invalid antimicrobial interpretations will be translated as \code{NA} with a warning.
|
|
}
|
|
\examples{
|
|
rsi_data <- as.rsi(c(rep("S", 474), rep("I", 36), rep("R", 370)))
|
|
rsi_data <- as.rsi(c(rep("S", 474), rep("I", 36), rep("R", 370), "A", "B", "C"))
|
|
is.rsi(rsi_data)
|
|
|
|
# this can also coerce combined MIC/RSI values:
|
|
as.rsi("<= 0.002; S") # will return S
|
|
|
|
plot(rsi_data) # for percentages
|
|
barplot(rsi_data) # for frequencies
|
|
freq(rsi_data) # frequency table with informative header
|
|
}
|
|
\seealso{
|
|
\code{\link{as.mic}}
|
|
}
|
|
\keyword{rsi}
|