%not.in%
%in%
R/aux_funs.R
grapes-not.in-grapes.Rd
%not.in% exclude rows with values specified in a vector.
x %not.in% y
The first vector
The second vector
Vector excluding values specified.
x <- c(1,2,3) y <- c(2,3) x %not.in% y #> [1] TRUE FALSE FALSE