を使用して、2つのy軸を持つプロットがありますtwinx()
。また、線にラベルを付けてで表示したいのですlegend()
が、凡例の1つの軸のラベルしか取得できません。
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()
したがって、凡例の最初の軸のラベルのみを取得し、2番目の軸の「temp」ラベルは取得しません。この3番目のラベルを凡例に追加するにはどうすればよいですか?
ax
ているスタイルで空の配列をプロットする醜いハックを使用しax2
ます:であなたの場合、ax.plot([], [], '-r', label = 'temp')
。それは適切にそれを行うよりもはるかに高速でシンプルです...