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

Matplotlib에서 두 점 사이에 선분을 어떻게 생성합니까?

<시간/>

matplotlib에서 두 점 사이에 선분을 생성하려면 다음 단계를 수행할 수 있습니다.

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • 두 개의 포인트를 만들려면 두 개의 목록을 만드세요.
  • 추출 xy point1의 값 및 point2 .
  • 플롯 xy plot()를 사용한 값 방법.
  • 두 점 모두에 텍스트를 배치합니다.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
point1 = [1, 2]
point2 = [3, 4]
x_values = [point1[0], point2[0]]
y_values = [point1[1], point2[1]]
plt.plot(x_values, y_values, 'bo', linestyle="--")
plt.text(point1[0]-0.015, point1[1]+0.25, "Point1")
plt.text(point2[0]-0.050, point2[1]-0.25, "Point2")
plt.show()

출력

Matplotlib에서 두 점 사이에 선분을 어떻게 생성합니까?