熊猫:按集合中包含的字段过滤

时间:2017-02-26 13:29:12

标签: python pandas filter set

我有一个 DataFrame df 和一组 user_ids:set 。如何选择仅包含集合中用户的 df 切片。像:

df[df.user_id in user_ids]

现在以这种方式工作,因为:

'Series' objects are mutable, thus they cannot be hashed

1 个答案:

答案 0 :(得分:2)

您可以使用store windowMsisin进行过滤:

boolean mask