I was looking at the documentation of matplotlib.animation.FuncAnimation
at http://matplotlib.org/api/animation_api.html .
What does save_count
do?
One way to find this info is to use IPython
. For example I executed the following in my session:
In [7]: from matplotlib.animation import FuncAnimation
In [8]: FuncAnimation??
This brought up the function documentation, which is more detailed then what is posted on the web api.
# Amount of framedata to keep around for saving movies. This is only
# used if we don't know how many frames there will be: in the case
# of no generator or in the case of a callable.
self.save_count = save_count
This is a nice way to go about finding documentation in general. I hope this helps!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With