In [5]:
from pandas import DataFrame
from numpy.random import rand
df = DataFrame(rand(50, 4), columns=['a', 'b', 'c', 'd'])
df.plot(kind='scatter', x='a', y='b');
%matplotlib inline

In [ ]: