查找用户创建的具有500多个内容的用户创建的内容总数,Python

时间:2018-10-15 21:19:31

标签: python pandas numpy

这是我用于此计算的数据的.head()

enter image description here

现在我到目前为止已完成此操作:

group = user_message.groupby('user_id')
agg = group.aggregate({'content_count': np.sum})
agg

这为我提供了输出:

enter image description here

现在,我只想返回user_id大于500的content_count。我想我可以修改以下行:agg = group.aggregate({'content_count': np.sum > 500})  但这样做时出现此错误:

TypeError: '>' not supported between instances of 'function' and 'int'

1 个答案:

答案 0 :(得分:1)

尝试

agg[agg.content_count>500]