I'm trying to exclude data that is filtered on another data frame using pandas jupyter. An example of the data frame can be seen below.
Data frame 1:
ID | Amount |
---|---|
AB-01 | 2.65 |
AB-02 | 3.6 |
AB-03 | 5.6 |
AB-04 | 7.6 |
AB-05 | 2 |
Dataframe 2:
ID | Amount |
---|---|
AB-01 | 2.65 |
AB-02 | 3.6 |
Desired outcome:
ID | Amount |
---|---|
AB-03 | 5.6 |
AB-04 | 7.6 |
AB-05 | 2 |