How to remove certain rows in Pandas dataframe where column value is in list? For example:
given mylist = [fh3, fh1, fh4]
id loc_id
0 fh0 0859
1 fh1 5861
2 fh2 2585
3 fh3 853
4 fh4 45596
4 fh5 586
remove rows where id in mylist:
id loc_id
0 fh0 0859
2 fh2 2585
4 fh5 586