The DataFrame df contains, among other columns, a column rep…
The DataFrame df contains, among other columns, a column representing the salary of each entry in the data. To return a DataFrame sorted by salary, you use: df.sort_values(‘salary’) What is the best way to modify this statement such that the record with the highest salary appears first in the output?