%nin% {bazar} | R Documentation |
The function %nin%
is the negation
of the function %in%
.
x %nin% table
x |
vector or NULL: the values to be matched. |
table |
vector or NULL: the values to be matched against. |
A logical vector, indicating if a non-match was located for each element of x: thus the values are TRUE or FALSE and never NA.
1:10 %nin% c(1,3,5,9)