not_in {convergEU} | R Documentation |
Auxiliary function for membership
Description
A fast check if one or more values are outside a set.
Usage
not_in(values, set_collection)
Arguments
values |
one or more values |
set_collection |
a collection of values |
Value
TRUE if not within or FALSE otherwise
References
Examples
val<-c(1,2,3,5)
mycol<-c(7,8)
not_in(val,mycol)
val1<-c(1,2,3,5)
mycol1<-c(3,5)
not_in(val1,mycol1)
val2<-c("FR", "IT", "LU")
mycol2<-c("FR", "ES")
not_in(val2,mycol2)
[Package convergEU version 0.7.3.2 Index]