熊猫:用条件从df中删除字符串

时间:2016-07-22 14:42:28

标签: python pandas

我有df

ID   url   date
1    vk.com    22.07.2016
2    twitter.com   22.07.2016
2    vk.com     22.07.2016
3    facebook.com    22.07.2016
4    forbes.com    22.07.2016

我亲了另一个df1

ID
1
3
4
5
9

如果df不在ID,我希望从df1删除字符串。 欲望输出:

ID   url   date
1    vk.com    22.07.2016
3    facebook.com    22.07.2016
4    forbes.com    22.07.2016

我尝试df[df.ID in df1['ID']],但它会返回TypeError: 'Series' objects are mutable, thus they cannot be hashed

0 个答案:

没有答案