sort() was deprecated for DataFrames in favor of either:
sort_values()to sort by column(s)sort_index()to sort by the index
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).