Pandas merge() method allows me to do inner, outer, left and right joins à la SQL. How would I proceed, if I wanted to do the EXCEPT SQL command in Pandas? (i.e. set subtraction) Thanks in advance.
Well, I think I've found an answer... Let A and B be dataframes. To do *B-A*, we could run: ``` B[B.column_name.isin(A.column_name)==False] ```