| not_in | R Documentation | 
A fast check if one or more values are outside a set.
not_in(values, set_collection)
| values | one or more values | 
| set_collection | a collection of values | 
TRUE if not within or FALSE otherwise
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.