except {charcuterie} | R Documentation |
Does not treat the operation as a set.
except(x, y)
x |
larger vector. |
y |
smaller vector. |
elements of x
not appearing in y
.
except(c(1:5), 3)
except(chars("abcde"), "c")
except(chars("abracadabra"), "b")