6
twinx ()가있는 보조 축 : 범례에 추가하는 방법?
를 사용하여 두 개의 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 …
288
python
matplotlib
axis
legend