如何使plt.style适用于我的二级情节熊猫

时间:2018-04-23 00:07:01

标签: python pandas matplotlib visualization

在我的代码中,我无法将我的标签组合到线条和条形图上的两个图上。另外,我不知道如何在我的辅助y轴上保持matplotlib样式?因为,为什么' fivethirtyeight'仅适用于第一轴但不适用于第二轴?因为它给了我在第一轴上的条上已经使用的相同颜色,并将它们放在第二个图上的线上。

fig = plt.figure()
ax = totals[['col1', 'col2','col3'].plot(kind='bar')
plt.xticks(rotation=0)
ax2 = ax.twinx()
ax2.plot(ax.get_xticks(), totals[['line1','line2']], labels=['line1','line2'],marker='o')
#ax2.legend(loc=0)
plt.style.use('fivethirtyeight')
plt.show()

Combine bar and line chart with pandas

提前感谢您的帮助!

0 个答案:

没有答案