Skip to contents

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
#> [1]  TRUE FALSE FALSE