can you do .sort_values in python on two columns? code example
Example: pandas sort values by multiple columns
df = df.sort_values(["b", "c"], ascending = (False, True))
df = df.sort_values(["b", "c"], ascending = (False, True))