I have a csv file and I want to plot my x,y values over 3 seconds. So when the page loads my graph starts plotting values and in 3 seconds it would've plotted all the values.
Are there any libraries that cater to this functionality?
I have a csv file and I want to plot my x,y values over 3 seconds. So when the page loads my graph starts plotting values and in 3 seconds it would've plotted all the values.
Are there any libraries that cater to this functionality?
Check out Matplotlib animation documentation. Specifically:
matplotlib.animation.FuncAnimation(fig, func, frames=None, init_func=None, fargs=None, save_count=None, **kwargs)
You'll have to define the plotting function to be animated