So I tried this, I'm working in a jupyter notebook and am wondering how to animate the next row of data.
enter code here
def animate(i):
data = df.iloc[i]
return data
ani = matplotlib.animation.FuncAnimation(fig, animate, frames=53, interval=700, repeat=True)