powered by
A fast check if one or more values are outside a set.
not_in(values, set_collection)
TRUE if not within or FALSE otherwise
one or more values
a collection of values
https://www.eurofound.europa.eu/system/files/2022-04/introduction-to-the-convergeu-package-0.6.4-tutorial-v2-apr2022.pdf
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)
Run the code above in your browser using DataLab