我在这里遇到一些问题,在我的python软件包中我安装了numpy
,但我仍然有这个错误:
‘DataFrame’ object has no attribute ‘sort’
任何人都可以给我一些想法。
这是我的代码:
final.loc[-1] =['', 'P','Actual']
final.index = final.index + 1 # shifting index
final = final.sort()
final.columns=[final.columns,final.iloc[0]]
final = final.iloc[1:].reset_index(drop=True)
final.columns.names = (None, None)
答案
sort()
被弃用的数据范围以支持这两个:
sort_values()
到sort by column(s)sort_index()
到sort by the index
sort()
在熊猫中被弃用(但仍然可用),并引入0.17(2015-10-09)sort_values()
和sort_index()
。它从pandas中删除,版本为0.20(2017-05-05)。