"not in" operator - works best when used inside filter.()

x %notin% y

Arguments

x

vector or NULL

y

vector or NULL

Examples

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