我有一个带有两个 y 轴的图,使用 twinx()
。我还给线条添加了标签,并希望用 legend()
来显示它们,但我只成功地获得了图例中一个轴的标签:
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import rc
rc('mathtext', default='regular')
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(time, Swdown, '-', label = 'Swdown')
ax.plot(time, Rn, '-', label = 'Rn')
ax2 = ax.twinx()
ax2.plot(time, temp, '-r', label = 'temp')
ax.legend(loc=0)
ax.grid()
ax.set_xlabel("Time (h)")
ax.set_ylabel(r"Radiation ($MJ\,m^{-2}\,d^{-1}$)")
ax2.set_ylabel(r"Temperature ($^\circ$C)")
ax2.set_ylim(0, 35)
ax.set_ylim(-20,100)
plt.show()
所以我只得到图例中第一个轴的标签,而不是第二个轴的标签“temp”。我怎样才能将这第三个标签添加到图例中?
原文由 joris 发布,翻译遵循 CC BY-SA 4.0 许可协议
您可以通过添加以下行轻松添加第二个图例:
你会得到这个:
但是如果你想要一个图例上的所有标签,那么你应该这样做:
这会给你这个: