grapes-notin-grapes: Binary operator for non-inclusion

Description Usage Details Examples

Description

This is just a convenience function for ! x %in% y.

Usage

1
x %notin% y

Details

See the note on matching NA in match.

Examples

1
2
3
4
5
x <- c(LETTERS[1:5], NA)
y <- c(LETTERS[4:8], NA)

data.frame(x, y,
           not_in = x %notin% y)

coletl/coler documentation built on May 12, 2021, 9:44 p.m.