를 사용하여 두 개의 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'라는 레이블은 얻지 못합니다. 범례에이 세 번째 레이블을 어떻게 추가 할 수 있습니까?
ax
것입니다ax2
. 당신의 경우ax.plot([], [], '-r', label = 'temp')
. 제대로하는 것보다 훨씬 빠르고 간단합니다.