Python Forum
Help with Matplotlib and ordering the axis
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help with Matplotlib and ordering the axis
#4
sorted_data = df.sort_values(by="Hombres", ascending=True)

or

df.sort_values(by="Hombres", ascending=True, inplace=True)

It depends on if you only want sorted data for the plot, or if you want the dataframe sorted. If you do not specify inplace=True the sort_values function creates and returns a new dataframe. The original dataframe is not changed.
theliberalguy97 likes this post
Reply


Messages In This Thread
RE: Help with Matplotlib and ordering the axis - by deanhystad - Dec-12-2020, 08:06 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  matplotlib x-axis text move bottom upward jacklee26 3 999 May-31-2023, 04:28 AM
Last Post: jacklee26
  x-axis labels with Matplotlib Mark17 8 2,246 Mar-23-2022, 06:10 PM
Last Post: Mark17
  How to make x-axis readable with matplotlib Mark17 7 3,955 Mar-01-2022, 04:30 PM
Last Post: DPaul
  matplotlib x axis range goes over the set range Pedroski55 5 3,233 Nov-21-2021, 08:40 AM
Last Post: paul18fr
  Sample labels from excel file in order to put them on x-axis and y-axis of a plot hobbyist 11 4,404 Sep-14-2021, 08:29 AM
Last Post: hobbyist
  drf ordering by custom field and add ranking in to_representation tomfong521 0 1,870 Mar-24-2021, 09:56 AM
Last Post: tomfong521
  Graphics Formatting - X-axis Notation and Annotations - Matplotlib silviover_junior 0 1,795 Mar-17-2021, 01:19 PM
Last Post: silviover_junior
  Matplotlib: How do I convert Dates from Excel to use in Matplotlib JaneTan 1 3,260 Mar-11-2021, 10:52 AM
Last Post: buran
  matplotlib x-axis wrong order SchroedingersLion 4 4,282 Feb-23-2021, 05:42 PM
Last Post: nilamo
  What are these ordering code doing coltson 1 1,805 Nov-03-2020, 05:07 AM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020