Matplotlib에서 클로버 기호로 산점도를 표시하려면 다음 단계를 수행할 수 있습니다. -
- 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
- x, y 생성 및 z numpy를 사용한 데이터 포인트
- 플롯 x, y 및 scatter() 사용 방법.
- X 및 Y축 레이블을 설정합니다.
- 그림의 왼쪽 상단에 범례를 배치합니다.
- 그림을 표시하려면 show()를 사용하세요. 방법.
예시
import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.arange(0.0, 50.0, 2.0) y = x ** 1.3 + np.random.rand(*x.shape) * 30.0 s = np.random.rand(*x.shape) * 800 + 500 plt.scatter(x, y, s, c=x, alpha=0.5, marker=r'$\clubsuit$', label="Legend", cmap="plasma") plt.xlabel("X-Axis") plt.ylabel("Y-Axis") plt.legend(loc='upper left') plt.show()
출력