这是我用于此计算的数据的.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'
答案 0 :(得分:1)
尝试
agg[agg.content_count>500]