I face some problem here, in my python package I have install numpy, but I still have this error \'DataFrame\' object has no attribute \'sort\'
Anyo
sort()
was deprecated for DataFrames in favor of either:
sort()
was deprecated (but still available) in Pandas with release 0.17 (2015-10-09) with the introduction of sort_values()
and sort_index()
. It was removed from Pandas with release 0.20 (2017-05-05).