except {charcuterie} | R Documentation |
Elements of x Except Those in y
Description
Does not treat the operation as a set.
Usage
except(x, y)
Arguments
x |
larger vector. |
y |
smaller vector. |
Value
elements of x
not appearing in y
.
Examples
except(c(1:5), 3)
except(chars("abcde"), "c")
except(chars("abracadabra"), "b")
[Package charcuterie version 0.0.4 Index]