I have a little pandas dataframe that looks like this:
Word Percentage1 Percentage2 1 drink 18.166654 29.014272 2 cherry 13.498262 12.802642 3
You can choose stacked bar graph:
# Given df = pd.DataFrame({'word':['Alpha', 'Bravo', 'Charlie'], 'Percentage 1':[10, 3, 0], 'Percentage 2': [5, 6, 4]}) df.set_index('word').plot(kind='barh', stacked=True)