powered by
%out% is the negation of %in%, so x %out% y is equivalent to ! x %in% y.
%out%
%in%
x %out% y
! x %in% y
x %out% table
vector of values to be matched.
vector or list to be matched against.
a logical vector or of the same length as x indicating if each value of x is within the defined subset.
x
# NOT RUN { iris$Species %in% c("setosa", "versicolor") iris$Species %out% c("setosa", "versicolor") # }
Run the code above in your browser using DataLab