3
在matplotlib中的次要y轴上添加y轴标签
我可以使用将y标签添加到左侧的y轴plt.ylabel,但是如何将其添加到辅助y轴呢? table = sql.read_frame(query,connection) table[0].plot(color=colors[0],ylim=(0,100)) table[1].plot(secondary_y=True,color=colors[1]) plt.ylabel('$')
118
python
matplotlib