Plotting Multiple Subplot Animations
I am currently trying to plot four simultaneous animations in a 2x2 matplotlib matrix. My code is as follows: x1 = np.random.normal(0, 1, 1000) x2 = np.random.gamma(0, 1.5, 1000) x
Solution 1:
You need to add %matplotlib notebook
before your script if you want to see the animation inside your jupyter notebook.
https://ipython.readthedocs.io/en/stable/interactive/plotting.html
Post a Comment for "Plotting Multiple Subplot Animations"