我尝试使用聚合和numpy.size
对其进行排序。
boarded_vl.groupby(['day_of_week', 'boarded_at']).aggregate({'boarded_at' : np.size})
我需要按最后一列np.size
排序的数据帧返回。我无法找到解决方案。
答案 0 :(得分:0)
很难说没有示例数据,但解决方案应该简单:
boarded_vl.groupby(['day_of_week', 'boarded_at']).aggregate({'boarded_at' : np.size}).sort_values('boarded_at')