In [1]:
%pylab inline


Populating the interactive namespace from numpy and matplotlib

In [2]:
import matplotlib.pyplot as plt
import numpy as np
import pandas

In [ ]:
a = np.random.randn(100)
b = np.random.randn(100)

In [ ]:
plt.plot(a,b)
plt.show()

In [ ]:


In [ ]: