Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Matplotlib에서 범례 마커 크기와 알파를 설정하는 방법은 무엇입니까?

<시간/>

matplotlib에서 범례 마커 크기와 알파를 설정하려면 다음 단계를 수행할 수 있습니다. -

단계

  • Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.

  • 변수 초기화 N 샘플 데이터의 수를 저장합니다.

  • marker="*"를 사용하여 x 및 y 데이터 포인트를 플로팅합니다. .

  • 그림에 범례를 표시합니다.

  • 마커의 마커 크기와 알파 값을 설정합니다.

  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

 matplotlib.pyplot을 pltimport numpy로 npplt.rcParams["Figure.figsize"] =[7.50, 3.50]plt.rcParams["Figure.autolayout"] =TrueN =10x =np.random.rand(N)로 가져오기 y =np.random.rand(N) 라인, =plt.plot(x, y, marker='*', markersize=20, markeredgecolor='black', alpha=0.4, ls='none', label=' 임의 데이터')legend =plt.legend(loc='오른쪽 위')legend.legendHandles[0]._legmarker.set_markersize(15)legend.legendHandles[0]._legmarker.set_alpha(1)plt.show() 

출력

다음 출력을 생성합니다 -

Matplotlib에서 범례 마커 크기와 알파를 설정하는 방법은 무엇입니까?