Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

แอนิเมชั่น Matplotlib ไม่ทำงานใน IPython Notebook?


ในการทำให้พล็อตเคลื่อนไหวใน matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย

  • สร้างข้อมูลแบบสุ่มของขนาด 10X10 รูปร่าง

  • สร้างร่างและชุดแผนย่อยโดยใช้ แผนย่อย() วิธีการ

  • สร้างภาพเคลื่อนไหวโดยเรียกใช้ฟังก์ชัน *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()

ผลลัพธ์

แอนิเมชั่น Matplotlib ไม่ทำงานใน IPython Notebook?