I have following dataframes:
A B. C. type
0 1 2 3 'house'
1 2 3 4 'dog'
2 3 4 5 'mom'
Basically, bar graph is created (ignore 'type) by grouping A, B, C together (x-axis looks like below).
ABC ABC ABC
However, what I want to create is like below (x-axis):
A(house)A(dog)A(mom) B(house)B(dog)B(mom) C(house)C(dog)C(mom)
But, by making house, dog, mom as legends.
Is this possible to generate bar graph like this?