In [1]:
from matplotlib.pylab import *
In [2]:
import matplotlib
matplotlib.__version__
Out[2]:
In [3]:
x = linspace(0,10,9)
y = randn(9)
In [4]:
x,y
Out[4]:
In [6]:
scatter(x,y)
show()