Description Usage Arguments Details Value Examples
Determine if values in the first argument don't exist in the second argument.
1 2 3 | x %nin% y
notIn(x, y)
|
x |
Vector or NULL: the values to be matched. |
y |
Vector or NULL: the values to be matched against. |
%nin%
is the functional inverse of %in%
.
lhs %nin% rhs
is equivalent to notIn(lhs, rhs)
.
A logical vector of the same length as x
. For every element in x
,
return FALSE
if the value exists in y
, and TRUE
otherwise.
1 2 3 4 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.