groupby of dataframe with sort

时间:2018-03-31 03:23:29

标签: python python-3.x pandas

我尝试使用聚合和numpy.size对其进行排序。

boarded_vl.groupby(['day_of_week', 'boarded_at']).aggregate({'boarded_at' : np.size})

我需要按最后一列np.size排序的数据帧返回。我无法找到解决方案。

1 个答案:

答案 0 :(得分:0)

很难说没有示例数据,但解决方案应该简单:

boarded_vl.groupby(['day_of_week', 'boarded_at']).aggregate({'boarded_at' : np.size}).sort_values('boarded_at')