Menu

[r8]: / trunk / matplotlib / examples / scatter_demo.py  Maximize  Restore  History

Download this file

10 lines (8 with data), 141 Bytes

1
2
3
4
5
6
7
8
9
from matplotlib.matlab import *
x = 0.9*rand(30)
y = 0.9*rand(30)
s = 0.1*rand(30)
c = rand(30)
scatter(x,y,s,c)
#axis([0, 1, 0, 1])
show()