赞
踩
比如 hour_count的列名为——
- hour_count.columns
-
- Index(['hour', 'event_label', 'count'], dtype='object'
对其:
tt = hour_count.groupby("hour").apply(lambda x:x.sort_values("count",ascending=False))
则可以让tt按照hour分组后,按照count排序
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。