Python twiny()와 함께 보조 축을 사용하는 방법: 범례에 추가하는 방법, Secondary axis with twinx(): how to add to legend
질문 저는 twinx()를 사용하여 두 개의 y-축이 있는 플롯이 있습니다. 또한 라인에 레이블을 지정하고 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', l..
2023. 11. 13.