有没有一种简单的方法可以在 matplotlib 中为滚动的垂直线设置动画?

Der*_*k_P 3 python animation matplotlib seaborn

我想拥有我所描述的进度标记,它在音频播放实用程序中似乎很常见。我认为在 matplotlib 中这相当于左/右动画plt.vlines。我的代码需要 2 秒的数据数组并创建音频时间序列可视化。我正在努力创建一条动画垂直线,该线将从 0 到 2 线性移动整个图 2 秒。

import seaborn as sns
import numpy as np
import matplotlib.pyplot as plt

font = {'weight': 'bold', 'size': 15}
plt.rc('font',**font)
sns.set_style("darkgrid")

testSeries = np.random.randint(-10, 20, 12000)
testSeries = testSeries - testSeries.mean()


fig,axis = plt.subplots(nrows=1,ncols=1,figsize=(18,5),sharex=True)
sns.lineplot(range(0,len(testSeries)),testSeries,  color='#007294')
plt.xlim(0, len(testSeries))
axis.set_xlabel("Time (s)", fontsize='large', fontweight='bold')
axis.set_ylabel("Amplitude", fontsize='large', fontweight='bold')
axis.set_xticklabels(['0', '0.3', '0.6', '1', '1.3', '1.6', '2'],fontsize=15)
fig.tight_layout(rect=[0,0,.8,1]) 
plt.subplots_adjust(bottom=-0.01)
sns.despine()
plt.show()
Run Code Online (Sandbox Code Playgroud)

Diz*_*ahi 6

axvline()简单地返回一个Line2D对象,因此您可以使用Line2D.set_xdata()

duration = 2 # in sec
refreshPeriod = 100 # in ms

fig,ax = plt.subplots()
vl = ax.axvline(0, ls='-', color='r', lw=1, zorder=10)
ax.set_xlim(0,duration)

def animate(i,vl,period):
    t = i*period / 1000
    vl.set_xdata([t,t])
    return vl,

ani = animation.FuncAnimation(fig, animate, frames=int(duration/(refreshPeriod/1000)), fargs=(vl,refreshPeriod), interval=refreshPeriod)
plt.show()
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明

请注意,刷新率无法保证,这取决于重新绘制图形所需的时间。你可能不得不玩弄refreshPeriod.