import matplotlib.pyplot as plt import seaborn as sns #set seaborn plotting aesthetics sns.set(style='white') #create stacked bar chart df.set_index('Day').plot(kind='bar', stacked=True, color=['steelblue', 'red'])