notIn {omnibus} | R Documentation |
Indicate if elements of a vector are not in another vector.
notIn(x, table)
x %notin% table
x , table |
Vectors. |
A logical vector.
x <- c('a', 'v', 'o', 'C', 'a', 'd', 'O')
y <- letters
y %notin% x
x %notin% y