Opposite of

Usage,
x %notin% y

Arguments

x

Vector of values

y

Another vector of values

Value

Vector of logical values inverting X

Examples

# \donttest{
 names(iris) %notin% "Species"
#> [1]  TRUE  TRUE  TRUE  TRUE FALSE
 # }