Description Usage Arguments Details Value See Also Examples
Same as setdiff
with argument order reversed.
1 | rev_setdiff(x, y)
|
x, y |
vectors. |
This is a convenience function useful when x
or y
is long/cumbersome to type.
The output of setdiff(y, x)
.
1 2 3 4 5 6 | x <- LETTERS[1:10]
y <- LETTERS[5:14]
setdiff(x, y)
rev_setdiff(y, x)
rev_setdiff(x, y)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.