I have tried some examples of animation code and cannot make them work. Here is the basic option I tried from the Matplotlib documentation:
""" A simple example of an animated plot """ import numpy as np import matplotlib.pyplot as plt import matplotlib.animation as animation fig, ax = plt.subplots() x = np.arange(0, 2*np.pi, 0.01)
When I do the above in an IPython Notebook, I just see an empty plot. I tried to run this from multiple servers (including Wakari), across multiple computers, using multiple browsers (Chrome, FF, IE).
I can easily save the animation in mp4 file and it looks good when playing.
Any help is appreciated!
matplotlib ipython-notebook
Mark ebersole
source share