%notin% {bruceR} | R Documentation |
The opposite of %in%
.
Description
The opposite of %in%
.
Usage
x %notin% vector
Arguments
x |
Numeric or character vector. |
vector |
Numeric or character vector. |
Value
A vector of TRUE
or FALSE
.
See Also
Examples
data = data.table(ID=1:10, X=sample(1:10, 10))
data
data[ID %notin% c(1, 3, 5, 7, 9)]
[Package bruceR version 2024.6 Index]