There is a Pandas dataframe: performer time_on_chart min max "Groove" Holmes 1 11 "Little" Jimmy Dickens 1 10 "Pookie" Hudson 1 1 "Weird Al" Yankovic 1 20 Sort these rows by max columns, in descending order, and display the first 20 rows
data = data.sort_values(by = ['max'], ascending = False).head(20) data