R/notin.R
grapes-notin-grapes.Rd
"not in" operator - works best when used inside filter.()
filter.()
x %notin% y
vector or NULL
df <- tidytable(x = 1:4, y = 1:4) df %>% filter.(x %notin% c(2, 4)) #> # A tidytable: 2 × 2 #> x y #> <int> <int> #> 1 1 1 #> 2 3 3