0

I have a pandas series that has 1 index(Countries) and one unnamed column with average values. I want to sort the series in descending order based on the values instead of the index. This is what the series looks like currently: enter image description here

1 Answers1

0
series.sort_values(ascending=False)
Bashton
  • 339
  • 1
  • 11