假设数据框看起来像这样。
. Value
0 86248
1 55265
2 52654
3 55568
4 56985
5 56855
6 79623
7 56648
...
我想计算数字[0,1,2,3...,100000]在列中出现的次数Value,然后将结果制成表格。
. Value
0 86248 df.loc[df.Value == 0, 'Value'].count()
1 55265 df.loc[df.Value == 1, 'Value'].count()
2 52654 df.loc[df.Value == 2, 'Value'].count()
3 55568 df.loc[df.Value == 3, 'Value'].count()
4 56985 df.loc[df.Value == 4, 'Value'].count()
5 56855 df.loc[df.Value == 5, 'Value'].count()
6 79623 df.loc[df.Value == 6, 'Value'].count()
7 56648 df.loc[df.Value == 7, 'Value'].count()
... ....
df.loc[df.Value ==100 000, 'Value'].count()
预期产出
. Value Counts
0 2 0 #Count 0
1 5 0 #Count 1
2 9 1 #Count 2
3 8 2 #Count 3
4 3 0 #Count 4
5 3 1 #Count 5
6 7 0 #Count 6
7 6 1 #Count 7
喵喔喔
慕标琳琳
相关分类