%out% {twig} | R Documentation |
Negation of %in% operator
Description
This function checks if elements of a vector are not in another vector.
Usage
x %out% table
Arguments
x |
A vector of values to be checked. |
table |
A vector of values to be compared against. |
Value
A logical vector indicating if the elements of x
are not in table
.
Examples
x <- c("A", "B", "C")
table <- c("B", "C", "D")
x %out% table
[Package twig version 1.0.0.0 Index]