%notin% | R Documentation |
Function being basically the opposite of %in% operator. Strictly a QoL thing
lhs %notin% rhs
lhs |
An object or vector |
rhs |
A vector (a set) |
The vector of logical values being the negated %in% result
## Not run: 1 %notin% c(2, 1, 3) # -> F c(1, 5, 10) %notin% c(2,1,3) # -> F T T ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.