Skip to content
Advertisement

How can I plot a stacked bar chart of median of a column in pandas dataframe?

So I am a newbie learning about data visualization in pandas (python) , My task is to Create a stacked chart of median WeekHrs and CodeRevHrs for the age group 30 to 35.

following is my code where I extracted the data applying filter on age column and below are the first five rows of my dataset

JavaScript
JavaScript

How can I plot a stacked bar chart with a median?

Please help

Advertisement

Answer

First, to filter for age (and also convert age to int as it makes for cleaner labels):

JavaScript

Then, you could plot a bar chart of the median of the two quantities in each age group:

JavaScript

BTW, you can impose an arbitrary order in how the values are stacked. For example, if you’d rather have 'Weekhrs' at the bottom, you can say:

JavaScript

Now, if you’d rather plot the overall median of these quantities for the entire filtered age range (as you say: a single number for each quantity), then one way (among many) would be:

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