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.
Python matplotlib.pyplot으로 범례 글꼴 크기를 변경하는 방법은 무엇인가요?, How to change legend fontsize with matplotlib.pyplot
질문 간단한 질문이 있습니다: matplotlib.pyplot을 사용하여 범례의 크기(즉, 텍스트의 크기)를 작게 만들려고 합니다. 사용 중인 코드는 다음과 같습니다: plot.figure() plot.scatter(k, sum_cf, color='black', label='Sum of Cause Fractions') plot.scatter(k, data[:, 0], color='b', label='Dis 1: cf = .6, var = .2') plot.scatter(k, data[:, 1], color='r', label='Dis 2: cf = .2, var = .1') plot.scatter(k, data[:, 2], color='g', label='Dis 3: cf = .1, var = .01')..
2023. 10. 18.