Is it feasible to sort pandas dataframe by values of a column, but also by index?
If you sort a pandas dataframe by values of a column, you can get the resultant dat
I solve this problem next way:
df.to_csv('df.csv', index = False) df = df.read_csv('df.csv')