I created a weighted scatter graph with markers of different sizes. When I add marker labels to my scatter graph all the markers were the same size.
The example below is silly but you'll see what I mean.
sysuse auto , clear
scatter price mpg [w=displacement] , msymbol(circle_hollow) name(rightsizebutnolabels) // markers are different sizes depending on displacement
scatter price mpg [w=displacement] , msymbol(circle_hollow) mlab(make) name(allmarkerssamesize) // markers are all the same size. This is NOT what I want for the graph I am trying to create
Thanks for your help.
Patrick Flaherty
The example below is silly but you'll see what I mean.
sysuse auto , clear
scatter price mpg [w=displacement] , msymbol(circle_hollow) name(rightsizebutnolabels) // markers are different sizes depending on displacement
scatter price mpg [w=displacement] , msymbol(circle_hollow) mlab(make) name(allmarkerssamesize) // markers are all the same size. This is NOT what I want for the graph I am trying to create
Thanks for your help.
Patrick Flaherty
Comment