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

Matplotlib 애니메이션을 사용하여 X축 값 업데이트

<시간/>

Matplotlib 애니메이션을 사용하여 X축 값을 업데이트하려면 다음 단계를 수행할 수 있습니다.

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • 그림과 서브플롯 세트를 생성합니다.
  • numpy를 사용하여 x 및 y 데이터 포인트를 생성합니다.
  • 축(ax)에 플롯 방법을 사용하여 x 및 y 데이터 포인트를 플로팅합니다.
  • X축 값을 프레임별로 설정하는 animate 함수를 반복적으로 호출하여 애니메이션을 만듭니다.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import matplotlib.pylab as plt
import matplotlib.animation as animation
import numpy as np

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

fig, ax = plt.subplots()
x = np.linspace(0, 15, 100)
y = np.sin(x)

ax.plot(x, y, lw=7)

def animate(frame):
   ax.set_xlim(left=0, right=frame)

ani = animation.FuncAnimation(fig, animate, frames=10)

plt.show()

출력

Matplotlib 애니메이션을 사용하여 X축 값 업데이트 Matplotlib 애니메이션을 사용하여 X축 값 업데이트