how to extract rows that have values that are in list pandas code example
Example 1: pandas dataframe select rows not in list
df[~df.isin(subset).iloc[:,0]]
Example 2: dataframe slice by list of values
In [4]: df[~df['A'].isin([3, 6])]
Out[4]:
A B
0 5 1
3 4 5