Description Usage Arguments Value Examples
Binary operators for set inclusion, intersection, union, asymmetric and symmetric difference, and equality, just like %in%
.
1 2 3 4 5 6 7 8 9 10 11 | x %c% y
x %n% y
x %u% y
x %-% y
x %(-)% y
x %==% y
|
x, y |
The same as for |
Return values for intersection, union, difference, and equality are the same as their base counterparts. Inclusion returns a length 1 logical that is TRUE
if x
is a subset (or equal to) y
, FALSE
otherwise. The symmetric difference returns the elements of x
and y
that are not members of both x
and y
.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.