
November 21st, 2012, 08:11 AM
|
|
Registered User
|
|
Join Date: Nov 2012
Posts: 13
Time spent in forums: 3 h 21 m 37 sec
Reputation Power: 0
|
|
|
How to plot a graph with these data
hi. i'd like to understand how to make the following graph in python, using matplotlib.
i have values for pressure, and it varies with y-axis. so, for example i have:
x=1,y=1,p=3
x=1,y=2,p=5
x=1,y=3,p=0
and so on, other sets for other x, eg:
x=2,y=1,p=9
x=2,y=2,p=5 ...
x=3,y=1,p=3
x=3,y=2,p=7 ...
So, what i need to do, is to put pressure values in a x-y graph. How i can do this? I was thinking of dot with different diameters or stuffs like that, but i don't now how to do.
thanks 
|