Creating animations using matplotlib.animation.funcanimation() can take a while, especially without blitting.
It would be nice to have an optional progress bar which prints to the terminal, perhaps telling you which frame is currently being plotted.
An example use case for this is when you have a large dataset and you're not sure what a reasonable time resolution to try and display at would be. Currently if you start plotting then you have no feedback telling you whether it's going to take 5 seconds or 5 minutes to complete. With a progress bar then you could at least say "nah 5 minutes is way too long, let me downsample my data first quickly".
I guess it would be an optional argument to animatplot.Animation()?
I would be happy to add this myself if you're okay with that?
Creating animations using
matplotlib.animation.funcanimation()can take a while, especially without blitting.It would be nice to have an optional progress bar which prints to the terminal, perhaps telling you which frame is currently being plotted.
An example use case for this is when you have a large dataset and you're not sure what a reasonable time resolution to try and display at would be. Currently if you start plotting then you have no feedback telling you whether it's going to take 5 seconds or 5 minutes to complete. With a progress bar then you could at least say "nah 5 minutes is way too long, let me downsample my data first quickly".
I guess it would be an optional argument to
animatplot.Animation()?I would be happy to add this myself if you're okay with that?