Matplotlib - Animations
What is the correct method to save an animation created with
matplotlib.animation.FuncAnimation as a file?matplotlib.animation.FuncAnimation as a file?FuncAnimation object has a method called save() specifically for saving animations.plt.savefig() saves static figures, not animations. There is no export() or write() method for animations in matplotlib.anim.save(filename) to save the animation. -> Option D15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions