In [1]:
%matplotlib inline
import matplotlib.pyplot as plt
#http://nbviewer.ipython.org/github/ipython/ipython/blob/1.x/examples/notebooks/Part%203%20-%20Plotting%20with%20Matplotlib.ipynb
from IPython.display import Image, display
In [2]:
from scipy import misc
In [7]:
scihackday = misc.imread('../example_files/scihackday.png', flatten=True)
type(scihackday)
Out[7]:
In [8]:
scihackday
Out[8]:
In [9]:
scihackday
Out[9]:
In [ ]: