Skip to content
Advertisement

How to plot a horizontal stacked bar with annotations

  • I used the example for Discrete distribution as horizontal bar chart example on matplotlib Discrete distribution as horizontal bar chart to create a chart showing share of the vote in Shropshire elections 2017.

  • However, because I did not know how to manipulate the data I had to manually enter my data in the program which is clearly down to my own ignorance.

  • I have the relevant data in a CSV file and can therefore load it as a dataframe.

    • The CSV has a row for each ward, of which there are 63 and columns for the % vote for each party (Tory, LD, Labour, Green, Indep) so 5 substantive columns.
  • I wanted advice as to how to change the form of the data so it resembles the input for this chart.

  • I am not sure what it is but seems possibly a dictionary type with key and value:

My data reads in part:

JavaScript
  • I am trying to get the data to be formatted like this directly from the csv file when entered as a pandas dataframe.

  • Have tried the values method and the to_dict method and while they get data looking similar they are not quite correct.

    • I believe there is a need to divide the data into keys and values but that is where my knowledge hits its limits.

Advertisement

Answer

Option 1: 'Party' as the y-axis

Using matplotlib from version 3.4.2

  • Use matplotlib.pyplot.bar_label
    • See this answer for additional details and examples with .bar_label.
  • See the matplotlib: Bar Label Demo page for additional formatting options.
  • Tested in pandas 1.3.2, python 3.81., and matplotlib 3.4.21.
    • 1. Minimum version required
    • labels = [f'{v.get_width():.0f}' if v.get_width() > 0 else '' for v in c ] without using the assignment expression (:=)
  • Use .get_height() for vertical bars.
JavaScript

Using matplotlib before version 3.4.2

  • Extract the .patch components in a loop, and then only plot annotations for values greater than 0.
JavaScript

enter image description here

Option 2: 'Ward' as the y-axis

  • Use pandas.DataFrame.T to swap the Index and Columns
    • 'Ward' will now be the index and 'Party' will be the columns
JavaScript

Using matplotlib from version 3.4.2

JavaScript

Using matplotlib before version 3.4.2

JavaScript

enter image description here

Advertisement