Hi,
I want to do multiple scatter plots by category.
I use this line of code:
The problem is that because the range of the variables is different per category I do not like the way STATA visualizes the scatter plot. I assume the reason is that it uses the same range on the ``x" axis as below. So my question is how I can adjust the scatter plot to get more ``individual" specific range for the x and y axis in the scatter plot ???
I want to do multiple scatter plots by category.
I use this line of code:
Code:
twoway scatter tfp_gap i_rd_go if Sectornum==1 || lfit tfp_gap i_rd_go if Sectornum==1, , by(Country)
Comment