Value matching

x %!in% table

Arguments

x

Vector with the values to be matched.

table

Vector with the values to be matched against.

Value

A logical vector indicating which values are not in table.

See also

Examples

x <- 8:12 x %!in% 1:10
#> [1] FALSE FALSE FALSE TRUE TRUE