In [2]:
%matplotlib notebook
import random
import numpy as np
import matplotlib.pyplot as plt
import scipy.stats
import matplotlib.animation as animation
In [3]:
fig, ax = plt.subplots()
x = np.arange(0, 2*np.pi, 0.01) # x-array
y = np.sin(x)
line, = ax.plot(x, y)
plt.xlim(0, 2*np.pi)
plt.show()
In [27]:
line.set_ydata(np.sin(x + np.pi))
In [75]:
def move_line(dx=0.01, line=line):
line.set_ydata(np.sin(x + dx))
return fig
In [83]:
#make an animation with 250 frames, where our phase shift goes from 0 to 2 pi
ani = animation.FuncAnimation(fig, move_line, np.linspace(0, 2 * np.pi, 250),blit=True)
In [84]:
print(animation.writers.list())
In [85]:
# Set up formatting for the movie files
Writer = animation.writers['avconv']
writer = Writer(fps=30, bitrate=1800, codec='h264')
ani.save('wave.mp4', writer=writer)
To get the link below, I just found where the resulting video file went. You may be able to just use "wave.mp4" if you're not using the jhub server.
In [82]:
%%HTML
<video controls="" autoplay="" name="media" loop>
<source src="https://jhub.rochester.edu/user/white.d.andrew@gmail.com/files/local/wave.mp4" type="video/mp4">
</video>
In [ ]: