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

การบันทึกภาพเคลื่อนไหว scatterplot ด้วย matplotlib


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

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • เริ่มต้นตัวแปร 4 ขั้นตอน ขั้นตอน โหนด ตำแหน่ง และวิธีแก้ปัญหา
  • ผนวกตำแหน่งและค่าโซลูชันในรายการ
  • สร้างร่างและชุดแผนย่อย
  • เริ่มต้นตัวแปรสำหรับขนาดเครื่องหมาย
  • กำหนดค่าเส้นตาราง
  • สร้างแอนิเมชั่นโดยการเรียกใช้ฟังก์ชันซ้ำๆ *เคลื่อนไหว * เพื่อล้างแกน เพิ่มล็อตย่อยของแกนใหม่ และพล็อตจุดกระจายบนแกน
  • บันทึกพล็อตภาพเคลื่อนไหวเป็น .gif ไฟล์.

ตัวอย่าง

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

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

steps = 50
nodes = 100
positions = []
solutions = []

for i in range(steps):
   positions.append(np.random.rand(2, nodes))
   solutions.append(np.random.random(nodes))

fig, ax = plt.subplots()
   marker_size = 50

def animate(i):
   fig.clear()
   ax = fig.add_subplot(111, aspect='equal', autoscale_on=False, xlim=(0, 1), ylim=(0, 1))
   ax.set_xlim(0, 1)
   ax.set_ylim(0, 1)
   s = ax.scatter(positions[i][0], positions[i][1], s=marker_size, c=solutions[i], cmap="RdBu_r", marker="o", edgecolor='black')

plt.grid(b=None)
ani = animation.FuncAnimation(fig, animate, interval=100, frames=range(steps))

ani.save('animation.gif', writer='pillow')

ผลลัพธ์

การบันทึกภาพเคลื่อนไหว scatterplot ด้วย matplotlib การบันทึกภาพเคลื่อนไหว scatterplot ด้วย matplotlib