Created
April 13, 2019 13:41
-
-
Save parulnith/40f26938ab2ca684e81550cfa1974d64 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from matplotlib import pyplot as plt | |
| from celluloid import Camera | |
| fig = plt.figure() | |
| camera = Camera(fig) | |
| for i in range(10): | |
| plt.plot([i] * 10) | |
| camera.snap() | |
| animation = camera.animate() | |
| animation.save('celluloid_minimal.gif', writer = 'imagemagick') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment