I would like to make a scatter plot with marker size like in https://www.stata.com/support/faqs/g...ers/index.html but I am not able to apply this command when I also want to label each marker.
Example with :
Code:
clear input long w byte x float y str3 l 110815 81 499 "AUS" 147025 95 491 "AUS" 118100 96 500 "BEL" 96722 90 516.6667 "CAN" 64935 83 437.6667 "CHI" 32365 78 405.3333 "COL" 68168 91 495.3333 "CZE" end
Code:
scatter y x [w=w]
But if I try
Code:
scatter y x [w=w], mlabel(l)
Is there anything I can do to fix this? (Stata 16 for Mac OS X, by the way)
Thank you for your help
0 Response to Scatter plot: do I have to choose between (weighted) marker size and marker label ?
Post a Comment