plot ax. , .
a = [3,5,4,2,1]
b = [3,4,5,2,1]
c = [3,5,4,6,1]
df = pd.DataFrame({'a' : a,'b' : b, 'c' : c})
ax = df.plot.barh(stacked=True);
ax.figure.set_size_inches(6,6)
ax.set_title("My ax title")
ax.legend(loc='upper left')

, , ax plot.
a = [3,5,4,2,1]
b = [3,4,5,2,1]
c = [3,5,4,6,1]
df = pd.DataFrame({'a' : a,'b' : b, 'c' : c})
fig, ax = plt.subplots()
fig.set_size_inches(6,6)
df.plot.barh(stacked=True, ax=ax);
ax.set_title("My ax title")
ax.legend(loc='upper left')
