I have a dataframe out of which I pick two subset dfs, df_a and df_b. For example in iris dataset:
df_a
df_b
iris
df_a = iris[iris.Name =
This seems a bit faster than your second solution. There's a bit more overhead when indexing with .ix:
.ix
df[~df.index.isin(df_a.index+df_b.index)]