x
y
Returns elements of vector x without elements in y.
without(x, y)
A vector.
a<-sample(1:15,15, replace=FALSE) b<-c(1, 3, 5) without(a, b)