In [1]:
from matplotlib import pyplot as plt
fig = plt.figure()
plt.plot([3, 4, 5], [1, 2, 3])
plt.show()
In [ ]:
 
mysharednotebook
In [1]:
from matplotlib import pyplot as plt
fig = plt.figure()
plt.plot([3, 4, 5], [1, 2, 3])
plt.show()
In [ ]: