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

실시간 플롯 중 Matplotlib에서 X축 이동


실시간 플롯 중에 Matplotlib에서 X축을 이동하려면 다음 단계를 수행할 수 있습니다. -

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • 그림과 서브플롯 세트를 생성합니다.
  • x 만들기 및 y numpy를 사용한 데이터 포인트
  • 플롯 xy plot()을 사용하는 데이터 포인트 방법.
  • *animate* 함수를 반복적으로 호출하여 애니메이션 만들기 실시간 플롯 중에 X축을 이동합니다.
  • 그림을 표시하려면 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.cos(x)

ax.plot(x, y, lw=2, color='red')

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

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

plt.show()

출력

실시간 플롯 중 Matplotlib에서 X축 이동