Skip to contents

%not.in% exclude rows with values specified in a vector.

Usage

x %not.in% y

Arguments

x

The first vector

y

The second vector

Value

Vector excluding values specified.

Examples

 x <- c(1,2,3)
 y <-  c(2,3)
 x %not.in% y
#> [1]  TRUE FALSE FALSE