from RandomArray import normal x = normal(50,.1,10000) # Plot from pylab import ion, hold, plot, title, xlabel, ylabel, legend, savefig, show ion() plot(x, 'k.') show()