无法使用重命名来重命名熊猫中的列

时间:2019-04-05 12:50:49

标签: pandas

我有一个熊猫数据框,看起来像这样:

     objectType    name parent  totalSurface   roofSurface
B001   building  А01.01   Q001     132000.00  6.600000e+04
B002   building  А02.01   Q002       4840.00  1.612000e+03
B003   building  А03.01   Q003       5160.00  1.290140e+03
B004   building  А03.02   Q003       3000.00  1.000430e+03
B005   building  А04.01   Q004      11038.00  1.226390e+03

但是当我执行以下命令时:

proportions2.rename(columns={"parent": "pid"}, inplace=True)

我收到KeyError ::

KeyError: 'parent'

我在这里错过了什么吗?我已经看过这个主要问题(https://stackoverflow.com/a/11354850/2068931),它只是说要像我想在数据帧上使用.rename()一样,但是我只是得到了这个KeyError。

0 个答案:

没有答案