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

IPython Notebook에서 Matplotlib 애니메이션이 작동하지 않습니까?

<시간/>

matplotlib에서 플롯에 애니메이션 효과를 주기 위해 다음 단계를 수행할 수 있습니다. -

  • Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.

  • 모양이 10X10인 임의의 데이터를 만듭니다.

  • subplots()를 사용하여 Figure와 서브플롯 세트 생성 방법.

  • *func*, 함수를 반복적으로 호출하여 애니메이션을 만듭니다. FuncAnimation() 클래스를 사용합니다.

  • 함수의 윤곽 값을 업데이트하기 위해 FuncAnimation() 클래스에서 사용할 수 있는 메서드를 애니메이션으로 정의할 수 있습니다.

  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

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

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
data = np.random.randn(800).reshape(10, 10, 8)
fig, ax = plt.subplots()

def animate(i):
   ax.clear()
   ax.contourf(data[:, :, i])

ani = animation.FuncAnimation(fig, animate, 5, interval=50, blit=False)
plt.show()

출력

IPython Notebook에서 Matplotlib 애니메이션이 작동하지 않습니까?