%in% {SparkR} | R Documentation |
Match a column with given values.
## S4 method for signature 'Column' x %in% table
a matched values as a result of comparing with given values.
## Not run: filter(df, "age in (10, 30)") where(df, df$age %in% c(10, 30)) ## End(Not run)