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