#!/usr/bin/env python # coding: utf-8 # In[1]: import numpy as np import matplotlib as mpl import matplotlib.pyplot as plt import seaborn as sns get_ipython().run_line_magic('matplotlib', 'inline') # In[2]: print "Seaborn version:",sns.__version__ print "Numpy version:",np.__version__ print "Matplotlib version:",mpl.__version__ # In[3]: data = np.random.randn(100) # In[4]: fig,ax = plt.subplots(figsize = (11,8.5)) ax.plot(data) # In[4]: