标签: 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
答案 0 :(得分:2)
您可以使用store windowMs与isin进行过滤:
store
windowMs
isin
boolean mask