1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/not.in.R
\name{\%nin\%}
\alias{\%nin\%}
\alias{nin}
\title{Not in}
\usage{
x \%nin\% table
}
\arguments{
\item{x}{vector or \code{NULL}: the values to be matched.}
\item{table}{vector or \code{NULL}: the values to be matched against.}
}
\value{
The negation of \code{\link[base:match]{\%in\%}}.
}
\description{
The not-in operator for R.
}
\examples{
1 \%nin\% 2:10
c("a", "b") \%nin\% c("a", "c", "d")
}
\seealso{
\code{\link[base:match]{\%in\%}}
}
\author{
Raymond Moore
}
|