I do have the below code to sort the values descending based on three columns and is working fine.
hr.sort_values(["SEX","DESIGNATION","SALARY"], ascending = False)
OUTPUT
As you can see all the values are in descending or in decreasing
So my requirement is i'm looking for a code where the columns SEX and DESIGNATION has to be in descending and only SALARY column in ascending
Regards
Bharath Vikas