I have a problem with removing rows from dataframe that occurs in another dataframe. Below simple example and expected results.
df1
| A | B |
|---|---|
| Z | 1 |
| X | 2 |
| C | 3 |
| V | 4 |
df2
| A | B |
|---|---|
| DD | 66 |
| Z | 1 |
| X | 2 |
| CC | 55 |
Expected output, df2 but rows that occur in df1 are dropped.
new df2:
| A | B |
|---|---|
| DD | 66 |
| CC | 55 |
Edit: I need to match both A and B.