AMR/man/join.Rd

63 lines
2.9 KiB
Plaintext
Raw Normal View History

2018-02-21 11:52:31 +01:00
% Generated by roxygen2: do not edit by hand
2018-07-23 14:14:03 +02:00
% Please edit documentation in R/join_microorganisms.R
2018-02-21 11:52:31 +01:00
\name{join}
\alias{join}
\alias{inner_join_microorganisms}
2018-02-21 11:52:31 +01:00
\alias{inner_join}
\alias{left_join_microorganisms}
\alias{right_join_microorganisms}
\alias{full_join_microorganisms}
\alias{semi_join_microorganisms}
\alias{anti_join_microorganisms}
\title{Join a table with \code{microorganisms}}
2018-02-21 11:52:31 +01:00
\usage{
2018-10-12 16:35:18 +02:00
inner_join_microorganisms(x, by = NULL, suffix = c("2", ""), ...)
2018-02-21 11:52:31 +01:00
2018-10-12 16:35:18 +02:00
left_join_microorganisms(x, by = NULL, suffix = c("2", ""), ...)
2018-02-21 11:52:31 +01:00
2018-10-12 16:35:18 +02:00
right_join_microorganisms(x, by = NULL, suffix = c("2", ""), ...)
2018-02-21 11:52:31 +01:00
2018-10-12 16:35:18 +02:00
full_join_microorganisms(x, by = NULL, suffix = c("2", ""), ...)
2018-02-21 11:52:31 +01:00
2018-10-12 16:35:18 +02:00
semi_join_microorganisms(x, by = NULL, ...)
2018-02-21 11:52:31 +01:00
2018-10-12 16:35:18 +02:00
anti_join_microorganisms(x, by = NULL, ...)
2018-02-21 11:52:31 +01:00
}
\arguments{
2018-10-12 16:35:18 +02:00
\item{x}{existing table to join, or character vector}
2018-02-21 11:52:31 +01:00
2018-10-12 16:35:18 +02:00
\item{by}{a variable to join by - if left empty will search for a column with class \code{mo} (created with \code{\link{as.mo}}) or will be \code{"mo"} if that column name exists in \code{x}, could otherwise be a column name of \code{x} with values that exist in \code{microorganisms$mo} (like \code{by = "bacteria_id"}), or another column in \code{\link{microorganisms}} (but then it should be named, like \code{by = c("my_genus_species" = "fullname")})}
2018-02-21 11:52:31 +01:00
\item{suffix}{if there are non-joined duplicate variables in \code{x} and \code{y}, these suffixes will be added to the output to disambiguate them. Should be a character vector of length 2.}
2018-02-27 20:01:02 +01:00
\item{...}{other parameters to pass on to \code{dplyr::\link[dplyr]{join}}.}
2018-02-21 11:52:31 +01:00
}
\description{
Join the dataset \code{\link{microorganisms}} easily to an existing table or character vector.
2018-02-21 11:52:31 +01:00
}
\details{
2018-10-12 16:35:18 +02:00
\strong{Note:} As opposed to the \code{\link[dplyr]{join}} functions of \code{dplyr}, characters vectors are supported and at default existing columns will get a suffix \code{"2"} and the newly joined columns will not get a suffix. See \code{\link[dplyr]{join}} for more information.
2018-02-21 11:52:31 +01:00
}
2019-01-02 23:24:07 +01:00
\section{Read more on our website!}{
2019-01-29 20:20:09 +01:00
On our website \url{https://msberends.gitlab.io/AMR} you can find \href{https://msberends.gitlab.io/AMR/articles/AMR.html}{a comprehensive tutorial} about how to conduct AMR analysis, the \href{https://msberends.gitlab.io/AMR/reference}{complete documentation of all functions} (which reads a lot easier than here in R) and \href{https://msberends.gitlab.io/AMR/articles/WHONET.html}{an example analysis using WHONET data}.
2019-01-02 23:24:07 +01:00
}
2018-02-22 20:48:48 +01:00
\examples{
2018-10-12 16:35:18 +02:00
left_join_microorganisms(as.mo("K. pneumoniae"))
left_join_microorganisms("B_KLBSL_PNE")
library(dplyr)
septic_patients \%>\% left_join_microorganisms()
2018-02-22 20:48:48 +01:00
df <- data.frame(date = seq(from = as.Date("2018-01-01"),
to = as.Date("2018-01-07"),
by = 1),
2018-10-12 16:35:18 +02:00
bacteria = as.mo(c("S. aureus", "MRSA", "MSSA", "STAAUR",
"E. coli", "E. coli", "E. coli")),
2018-02-22 20:48:48 +01:00
stringsAsFactors = FALSE)
colnames(df)
2018-10-12 16:35:18 +02:00
df_joined <- left_join_microorganisms(df, "bacteria")
colnames(df_joined)
2018-02-22 20:48:48 +01:00
}