python-IndexError:索引1491188345超出了轴0的大小为1491089723的范围
作者:互联网
我有一个dataframe,df有646585行和3列,看起来像:
index inp aco count
0 2.3.6. dp-ptp-a2f 22000
1 2.3.12. ft-ptp-a2f 21300
2 2.5.9. dp-ptp-a2f 21010
3 0.8.0. dp-ptp-a4f 20000
4 2.3.6. ft-ptp-a2f 19000
5 2.3.6. ff-ptp-a2f 18500
... ...
... ...
... ...
我试图使用代码来旋转数据框:
df1=df.pivot_table(values='count', index='inp', columns='aco',fill_value=0)
print(df1)
但是我得到了
IndexError: index 1491188345 is out of bounds for axis 0 with size 1491089723
解决方法:
有open Pandas issue描述此错误.
AFAIK当前没有提供解决方案/解决方法,只是减少了数据集
标签:pandas,dataframe,pivot-table,python 来源: https://codeday.me/bug/20191110/2013337.html