Skip to content
Advertisement

How can I plot a secondary y-axis with seaborn’s barplot?

I’m trying to plot the data (see below). With company_name on the x-axis, status_mission_2_y on the y axis and percentage on the other y_axis. I have tried using the twinx() fucntion but I can’t get it to work.

Please can you help? Thanks in advance!

JavaScript
company_name percentage status_mission_2_y
EER 1 1
Ghot 1 1
Trv 1 1
Sandia 1 1
Test 1 1
US Navy 0.823529412 17
Zed 0.8 5
Gov 0.75 4
Knight 0.666666667 3
Had 0.666666667 3

Advertisement

Answer

Seaborn plots the two bar plots with the same color and on the same x-positions.

The following example code resizes the bar widths, with the bars belonging ax moved to the left. And the bars of ax2 moved to the right. To differentiate the right bars, a semi-transparency (alpha=0.7) and hatching is used.

JavaScript

resulting plot

A simpler alternative could be to combine a barplot on ax and a lineplot on ax2.

JavaScript

barplot plus lineplot

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement