AMR/man/join.Rd

51 lines
1.7 KiB
Plaintext
Raw Normal View History

2018-02-21 11:52:31 +01:00
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/join.R
\name{join}
\alias{join}
\alias{inner_join_bactlist}
\alias{inner_join}
\alias{left_join_bactlist}
\alias{right_join_bactlist}
\alias{full_join_bactlist}
\alias{semi_join_bactlist}
\alias{anti_join_bactlist}
2018-02-22 20:48:48 +01:00
\title{Join a table with \code{bactlist}}
2018-02-21 11:52:31 +01:00
\usage{
inner_join_bactlist(x, by = "bactid", ...)
2018-02-27 20:01:02 +01:00
left_join_bactlist(x, by = "bactid", ...)
2018-02-21 11:52:31 +01:00
2018-02-27 20:01:02 +01:00
right_join_bactlist(x, by = "bactid", ...)
2018-02-21 11:52:31 +01:00
2018-02-27 20:01:02 +01:00
full_join_bactlist(x, by = "bactid", ...)
2018-02-21 11:52:31 +01:00
2018-02-27 20:01:02 +01:00
semi_join_bactlist(x, by = "bactid", ...)
2018-02-21 11:52:31 +01:00
2018-02-27 20:01:02 +01:00
anti_join_bactlist(x, by = "bactid", ...)
2018-02-21 11:52:31 +01:00
}
\arguments{
\item{x}{existing table to join}
\item{by}{a variable to join by - could be a column name of \code{x} with values that exist in \code{bactlist$bactid} (like \code{by = "bacteria_id"}), or another column in \code{\link{bactlist}} (but then it should be named, like \code{by = c("my_genus_species" = "fullname")})}
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 list of microorganisms \code{\link{bactlist}} easily to an existing table.
}
\details{
As opposed to the \code{\link[dplyr]{join}} functions of \code{dplyr}, 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-22 20:48:48 +01:00
\examples{
df <- data.frame(date = seq(from = as.Date("2018-01-01"),
to = as.Date("2018-01-07"),
by = 1),
bacteria_id = c("STAAUR", "STAAUR", "STAAUR", "STAAUR",
"ESCCOL", "ESCCOL", "ESCCOL"),
stringsAsFactors = FALSE)
colnames(df)
df2 <- left_join_bactlist(df, "bacteria_id")
colnames(df2)
}