'DataFrame' object has no attribute 'sort'
I face some problem here, in my python package I have to install numpy, but I still have this error 'DataFrame' object has no attribute 'sort'
Anyone can give me some ideas...
This is my code :
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)
To get the solution for dataframe' object has no attribute 'sort'
sort() was deprecated for DataFrames in favor of either this: sort_values() to sort by column(s) or this: sort_index() to sort by the index.
sort() was deprecated but still available in Pandas with release 0.17 with the introduction of sort_values() and sort_index(). It was removed from Pandas with release 0.20 (2017-05-05).