outersect {usefun} | R Documentation |
Performs set outersection on two vectors. The opposite operation from
intersect
!
outersect(x, y)
x , y |
vectors |
a vector of the non-common elements of x and y.
x = 1:10
y = 2:11
# c(1,11)
outersect(x,y)