Equivalent of anti_join(library dplyr) of R in python -
i have 2 tables & b common column or key column "x" , want remove instances of x in table exists in table b. want able in python. equivalent in r is
library(dplyr) anti_join(a,b,by = "x")
can me?
wiki
Comments
Post a Comment