我正在使用value_count和bin获取数据库的一个视图。
bin = np.concatenate((np.arange(0,10,1),np.arange(10,100,10),np.arange(100,1000,100)))
array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20, 30,
40, 50, 60, 70, 80, 90, 100, 200, 300, 400, 500, 600, 700,
800, 900])
我的示例数据如下:
summary_data['STOP_mean']
536826 4.100000
536827 1.500000
536828 2.000000
Name: STOP_mean, Length: 536829, dtype: float64
但是,bin提供的结果如下:
与大熊猫结果的顺序不同 。
summary_data['STOP_mean'].value_counts(bins = bin)
(-0.001, 1.0] 172259
(1.0, 2.0] 163468
(2.0, 3.0] 57479
(10.0, 20.0] 30479
(3.0, 4.0] 29108
(4.0, 5.0] 18480
为什么(10.0,20.0]
在(2.0.3.0]
之后弹出
已经尝试reset_index
且sort_index
不起作用。 (看起来像是间隔索引。如何重置该索引?)
sort_index
结果:
<bound method Series.sort_index of (-0.001, 1.0] 172259
(1.0, 2.0] 163468
(2.0, 3.0] 57479
(10.0, 20.0] 30479
(3.0, 4.0] 29108
(4.0, 5.0] 18480
sort_index(axis=0)
解决了问题