我想用ArtistAnimation绘制动画子图。不幸的是,我无法弄清楚如何拥有一个动画传奇。我尝试了在StackOverflow上找到的不同方法。如果我设法得到一个传奇,它不是动画,而只是所有动画的传说一起步。
我的代码如下所示:
import numpy as np
import pylab as pl
import matplotlib.animation as anim
fig, (ax1, ax2, ax3) = pl.subplots(1,3,figsize=(11,4))
ims = []
im1 = ['im11','im12','im13']
im2 = ['im21','im22','im23']
x = np.arange(0,2*np.pi,0.1)
n=50
for i in range(n):
for sp in (1,2,3):
pl.subplot(1,3,sp)
y1 = np.sin(sp*x + i*np.pi/n)
y2 = np.cos(sp*x + i*np.pi/n)
im1[sp-1], = pl.plot(x,y1)
im2[sp-1], = pl.plot(x,y2)
pl.xlim([0,2*np.pi])
pl.ylim([-1,1])
lab = 'i='+str(i)+', sp='+str(sp)
im1[sp-1].set_label([lab])
pl.legend(loc=2, prop={'size': 6}).draw_frame(False)
ims.append([ im1[0],im1[1],im1[2], im2[0],im2[1],im2[2] ])
ani = anim.ArtistAnimation(fig,ims,blit=True)
pl.show()
我认为此代码与此处使用的方法相同How to add legend/label in python animation,但显然我遗漏了一些东西。
我也尝试按照Add a legend for an animation (of Artists) in matplotlib中的建议设置标签,但我真的不明白如何在我的情况下使用它。喜欢这个
im2[sp-1].legend(handles='-', labels=[lab])
我得到AttributeError: 'Line2D' object has no attribute 'legend'
。
[编辑]:我没有说清楚:我希望这些情节中的两条线都有一个传奇。
答案 0 :(得分:2)
我不知道传奇应该是什么样子,但我想你只想让它显示当前帧中一行的当前值。因此,您最好更新该行的数据,而不是绘制150个新图。
import numpy as np
import pylab as plt
import matplotlib.animation as anim
fig, axes = plt.subplots(1,3,figsize=(8,3))
ims = []
im1 = [ax.plot([],[], label="label")[0] for ax in axes]
im2 = [ax.plot([],[], label="label")[0] for ax in axes]
x = np.arange(0,2*np.pi,0.1)
legs = [ax.legend(loc=2, prop={'size': 6}) for ax in axes]
for ax in axes:
ax.set_xlim([0,2*np.pi])
ax.set_ylim([-1,1])
plt.tight_layout()
n=50
def update(i):
for sp in range(3):
y1 = np.sin((sp+1)*x + (i)*np.pi/n)
y2 = np.cos((sp+1)*x + (i)*np.pi/n)
im1[sp].set_data(x,y1)
im2[sp].set_data(x,y2)
lab = 'i='+str(i)+', sp='+str(sp+1)
legs[sp].texts[0].set_text(lab)
legs[sp].texts[1].set_text(lab)
return im1 + im2 +legs
ani = anim.FuncAnimation(fig,update, frames=n,blit=True)
plt.show()