我想同时绘制线图和条形图,其中DEM和REP的线图都遵循条形图的轨迹(因此,线图不代表新数据或其他数据)。 “年”是X轴。到目前为止,我已经编写了以下代码:
_, ax = plt.subplots()
districts[['DEM', 'REP', 'Year']].groupby(['Year']).sum().plot(kind='bar',
color=['b', 'r'],
ax=ax)
districts[['DEM', 'REP', 'Year']].groupby(['Year']).sum().plot(ax=ax,
legend=False);
但是,折线图不会广播。我已咨询过previous SO question,并按建议使用了ax = ax,但仍然无法正常工作。