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

Matplotlib의 플롯에 애니메이션 텍스트 플롯

<시간/>

플롯의 텍스트에 애니메이션 효과를 주기 위해 다음 단계를 수행할 수 있습니다.

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • x 및 y축 제한을 설정합니다.
  • 변수, 문자열 초기화 .
  • 텍스트() 사용 플롯 위에 텍스트를 배치하는 방법입니다.
  • FuncAnimation() 사용 텍스트에 애니메이션을 적용합니다. 텍스트 축에 텍스트를 설정합니다.
  • 축을 끕니다.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

from matplotlib import pyplot as plt, animation
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig, ax = plt.subplots()
ax.set(xlim=(-1, 1), ylim=(-1, 1))
string = 'Hello, how are you doing?'
label = ax.text(0, 0, string[0], ha='center', va='center', fontsize=20, color="Red")

def animate(i):
   label.set_text(string[:i + 1])

anim = animation.FuncAnimation(
   fig, animate, interval=200, frames=len(string))
ax.axis('off')
plt.show()

출력

Matplotlib의 플롯에 애니메이션 텍스트 플롯