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

Matplotlib Python에서 단일 점을 어떻게 그릴 수 있습니까?

<시간/>

matplotlib에서 단일 데이터 포인트를 플롯하려면 다음 단계를 수행할 수 있습니다. -

  • 단일 값으로 x 및 y 목록을 초기화합니다.

  • X 및 Y축 범위를 0에서 5로 제한합니다.

  • 현재 선 스타일로 그리드를 배치합니다.

  • marker="o", markeredgecolor="red", markerfacecolor="green"과 함께 plot() 메서드를 사용하여 x 및 y 플롯 .

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

예시

from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x = [4]
y = [3]
plt.xlim(0, 5)
plt.ylim(0, 5)
plt.grid()
plt.plot(x, y, marker="o", markersize=20, markeredgecolor="red", markerfacecolor="green")
plt.show()

출력

Matplotlib Python에서 단일 점을 어떻게 그릴 수 있습니까?