Skip to content
Advertisement

how to make histogram for multivariate data in python seaborn?

I have a following data I would like to have a histogram like the following but I could not do it using python. Can anyone please help me how to do it in python?

Group Summer Winter Autumn Spring
bacteria 20 30 40 20
virus 30 50 20 20
fungi 50 20 40 60

enter image description here

Advertisement

Answer

You can transform the dataframe to long form, and then call sns.histplot() with weights=... and multiple='stack'.

JavaScript

sns.histplot with weights and multiple='stack'

PS: As mentioned in the comments, multiple='fill' is another option. In that case, the bars for each x-value get stretched to fill the total height. This would especially be interesting when the values in the dataframe would be counts (instead of percentages, such as seems to be the case with the example data).

The code could then look like:

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