AttributeError:'DataFrame' object has no attribute 'sort'

AttributeError:'DataFrame' object has no attribute 'sort'

解决办法:将“sort”改为“sort_values”。

如:

c_df_sort=c_df.sort(columns=0,ascending=False)

改为:

c_df_sort=c_df.sort_values(0,ascending=False)

 

你可能感兴趣的:(python)