我想从DataFrame中合并这两个图表: two charts合并为一个,以便它们彼此堆叠。
我唯一用此代码获得的东西:
plt.style.use('ggplot')
fig, ax = plt.subplots(sharey=True)
hw = hotwater_qa_1day.plot(kind='bar',stacked=True,width=1,colormap='autumn',figsize=(20,5),ax=ax)
ht = heatdemand_qa_1day.plot(kind='bar',stacked=True,width=1,colormap='winter',figsize=(20,5),ax=ax)
plt.ylabel('Heatdemand and Hotwater')
plt.xlabel('Time')
plt.title('Title')
plt.show()
是其中一部分数据隐藏另一部分的图表。 像这儿: faulty chart
如何解决? 我希望他们在一起。不在两个子图上。