我有两个很大的列表,其中包含创建两个垂直堆叠的imshow()
子图的数据。
import matplotlib.pyplot as plt
import matplotlib.animation as animation
list1 = [[1,2,3,4,5,6,7,8], [1,2,3,4,5,6,7,8], ...]
list2 = [[1,2,3,4,5,6,7,8], [1,2,3,4,5,6,7,8], ...]
fig = plt.figure()
ax1 = fig.add_subplot(2, 1, 1)
ax2 = fig.add_subplot(2, 1, 2)
ax1.imshow(list1_item[i], interpolation=None)
ax2.imshow(list2_item[i], interpolation=None)
我想为列表的每个索引创建图,并从中创建视频。最好的方法是什么?
非常感谢您。