小编典典

在 matplotlib 中将 y 轴标签添加到辅助 y 轴

all

我可以使用 将 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('$')

阅读 72

收藏
2022-07-28

共1个答案

小编典典

最好的方法是直接与axes对象交互

import numpy as np
import matplotlib.pyplot as plt
x = np.arange(0, 10, 0.1)
y1 = 0.05 * x**2
y2 = -1 *y1

fig, ax1 = plt.subplots()

ax2 = ax1.twinx()
ax1.plot(x, y1, 'g-')
ax2.plot(x, y2, 'b-')

ax1.set_xlabel('X data')
ax1.set_ylabel('Y1 data', color='g')
ax2.set_ylabel('Y2 data', color='b')

plt.show()

示例图

2022-07-28