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?
Share
I just found out that you can use
scatterfor this:where the format is:
scatter(x,y,sizes,markerType)Produces: