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/easyr documentation built on June 10, 2020, 4:58 p.m.