So I need to filter out rows from one data frame using another dataframe as a condition for it.
df1:
system code
AIII-01 423
CIII-04 123
LV-02 142
df2:
StatusMessage Event
123 Gearbox warm up
So for this example I need to remove the rows that has the code 423 and 142.
How do I do that?