A Matplotlib Notebook Demo

In [1]:
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
/usr/lib/python2.7/dist-packages/matplotlib/font_manager.py:273: UserWarning: Matplotlib is building the font cache using fc-list. This may take a moment.
  warnings.warn('Matplotlib is building the font cache using fc-list. This may take a moment.')
In [2]:
from demo_pkg.foo import x_squared
x = np.arange(10)
plt.plot(x, x_squared(x))
Out[2]:
[<matplotlib.lines.Line2D at 0x7f0fa95a41d0>]
_images/demo_notebook_2_1.png