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

matplotlib에 주석이 있는 원을 어떻게 넣습니까?

<시간/>

matplotlib에 주석이 있는 원을 넣으려면 다음 단계를 수행할 수 있습니다. -

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • numpy를 사용하여 데이터 포인트 생성
  • 주석이 있는 원을 넣을 점 좌표를 가져옵니다.
  • 현재 축을 가져옵니다.
  • plot() 메서드를 사용하여 데이터와 데이터 포인트를 플로팅합니다.
  • X 및 Y축 배율을 설정합니다.
  • 동그라미 표시를 하려면 marker='o' 및 일부 속성과 함께 plot() 메서드를 사용하세요.
  • 화살표 스타일로 해당 원(7단계)에 주석을 답니다.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import matplotlib.pyplot as plt
import numpy as np

plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True

data = np.array([[5, 3, 4, 4, 6],
   [1, 5, 3, 2, 2]])
point = data[:, 2]
ax = plt.gca()
ax.plot(data[0], data[1], 'o', ms=10, color='red')

ax.set_xlim([2, 8])
ax.set_ylim([0, 6])
radius = 15

ax.plot(point[0], point[1], 'o',
   ms=radius * 2, mec='yellow', mfc='none', mew=2)

ax.annotate('Circled Marker', xy=point, xytext=(60, 60),
   textcoords='offset points',
   color='green', size='large',
   arrowprops=dict(
      arrowstyle='simple,tail_width=0.3,head_width=0.8,head_length=0.8',
      facecolor='b', shrinkB=radius * 1.2)
   )

plt.show()

출력

다음 출력을 생성합니다.

matplotlib에 주석이 있는 원을 어떻게 넣습니까? matplotlib에 주석이 있는 원을 어떻게 넣습니까?