I'd like to have non-uniform point sizes in matplotlib (set a size for each point). Is there a way to do this? I guess I could hack it by having a separate plot command (with markersize set) for each point, but that would be really annoying. Is there a more principled way开发者_JAVA百科?
I just found out that you can use scatter
for this:
scatter(500:600,600:700,1:101);
where the format is: scatter(x,y,sizes,markerType)
Produces:
精彩评论