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

Matplotlib를 사용하여 반 검은색과 반 흰색 원을 그리는 방법은 무엇입니까?

<시간/>

Matplotlib를 사용하여 반검은색 및 반흰색 원을 그리려면 다음 단계를 수행할 수 있습니다. -

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • 그림과 서브플롯 세트를 생성합니다.
  • ta1 초기화 및 세타2 ta1에서 ta2로 또는 그 반대로 가장자리를 그립니다.
  • 현재 축에 쐐기 인스턴스를 추가합니다.
  • 축 제한을 변경하여 동일한 배율을 설정합니다.
  • x 설정 및 y 규모.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import matplotlib.pyplot as plt
from matplotlib.patches import Wedge

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

fig, ax = plt.subplots()
theta1, theta2 = 0, 0 + 180
radius = 2
center = (0, 0)
w1 = Wedge(center, radius, theta1, theta2, fc='black', edgecolor='black')
w2 = Wedge(center, radius, theta2, theta1, fc='white', edgecolor='black')

for wedge in [w1, w2]:
   ax.add_artist(wedge)

ax.axis('equal')
ax.set_xlim(-5, 5)
ax.set_ylim(-5, 5)

plt.show()

출력

Matplotlib를 사용하여 반 검은색과 반 흰색 원을 그리는 방법은 무엇입니까?