以下是我用于此计算的数据的.head()
:
现在我已经做到了:
group = user_message.groupby('user_id')
agg = group.aggregate({'content_count': np.sum})
agg
这给了我输出:
现在我只想返回
user_id
值大于500的content_count
。我想我可以修改这一行:agg = group.aggregate({'content_count': np.sum > 500})
但这样做的时候我会犯这个错误:
TypeError: '>' not supported between instances of 'function' and 'int'
最佳答案
尝试
agg[agg.content_count>500]
关于python - 查找用户创建的具有500多个内容的用户创建的内容总数,Python,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52824908/