The update:
I was able to produce the plot with:

fig      = P.figure()
ax      = fig.add_subplot(1,1,1)
cmap  =  P.matplotlib.cm.jet
norm   =  P.matplotlib.colors.Normalsize(vmin=0,vmax=1)
sc      = ax.scatter(ave_lon,ave_lat,c=v,cmap=cmap,norm=norm)
savefig('sg.png')

However, I have a few questions:
1.) How to control the size of each circle on the scatter plot
2.) How to add the coast line with lambert projection?
THANKS



jenya56 wrote:
> 
> Dear all, I was wondering if there is equivalent in python of this
> function:
> PLOTCLR(X,Y,V) plots the values specified in V as a color coded scatter
> plot at the locations specified in the vectors X and Y. The current
> colormap of the figure is used for the color code. Any suggestions?
> Thanks.
> 

-- 
View this message in context: 
http://old.nabble.com/advaced-scatter-plot-tp26779933p26779939.html
Sent from the matplotlib - users mailing list archive at Nabble.com.


------------------------------------------------------------------------------
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to