You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
library(dplyr, warn.conflicts=FALSE)
library(data.table, warn.conflicts=FALSE)
a<- data.table(x=1:2)
b<- data.table(x=2)
setdiff(a, b)
#> x#> 1: 1
library(dtplyr, warn.conflicts=FALSE)
setdiff(a, b)
#> Error in step_set(x, y, style = "setdiff"): is_step(y) is not TRUE
Using
setdiff
causes an errorCreated on 2021-08-09 by the reprex package (v2.0.1)
The text was updated successfully, but these errors were encountered: