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

matplotlib의 윤곽선이 있는 애니메이션

<시간/>

matplotlib에서 윤곽선으로 애니메이션하려면 다음 단계를 수행할 수 있습니다.

단계

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

  • 등고선 플롯에 대한 데이터를 생성합니다.

  • Figure와 서브플롯 세트를 생성합니다.

  • *animate* 함수를 반복적으로 호출하여 애니메이션 생성 animate() 방법은 등고선 데이터 포인트를 변경합니다.

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

예시

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

# Set the figure size
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True

# Random data for the contour plot
data = np.random.randn(800).reshape(10, 10, 8)

# Create a figure and a set of subplots
fig, ax = plt.subplots()

# Method to change the contour data points
def animate(i):
    ax.clear()
    ax.contourf(data[:, :, i], cmap='plasma')

# Call animate method
ani = animation.FuncAnimation(fig, animate, 5, interval=50, blit=False)

# Display the plot
plt.show()

출력

다음 출력을 생성합니다 -

matplotlib의 윤곽선이 있는 애니메이션