gpt4 book ai didi

python - 按 Pandas 系列中的第二列排序

转载 作者:行者123 更新时间:2023-11-28 22:10:03 25 4
gpt4 key购买 nike

我想按系列中的第二个“列”对 Pandas 系列的值进行排序。

这是我的代码:

merged_clean.groupby('weeknum')['time_hour'].value_counts()

这是我要排序的数据示例:

weeknum   time_hour
16-22Jun 10.0 50
11.0 50
15.0 44
12.0 41
14.0 38
13.0 34
16.0 33
8.0 30
9.0 29
18.0 28
20.0 28
21.0 23
19.0 20
17.0 19
22.0 16
7.0 12
23.0 8
0.0 5
6.0 5
3.0 4
1.0 3
2.0 3
4.0 2
5.0 2
2-8Jun 11.0 66
12.0 56
9.0 55
13.0 53
10.0 52
14.0 41

想法是对其进行排序,使其按 time_hour 排序。我知道我已经试过了

merged_clean.groupby('weeknum')['time_hour'].value_counts().sort_values()

但据我所知,这是按值对行进行排序

最佳答案

使用Series.sort_index按名称或编号指定的第二级:

merged_clean.groupby('weeknum')['time_hour'].value_counts().sort_index(level=['time_hour'])

或者:

merged_clean.groupby('weeknum')['time_hour'].value_counts().sort_index(level=1)

但是如果需要在 MultiIindex 中对两个级别进行排序:

merged_clean.groupby('weeknum')['time_hour'].value_counts().sort_index()

关于python - 按 Pandas 系列中的第二列排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57007009/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com