Hey guys,
I am looking for a way to plot income deciles on emission deciles. I have about 10.000 observations and created deciles as follows:
If I now plot them using
I get something that looks like a chess board, such that x,y = 1,1; 1,2; ...; 1,10. x,y = 2,1; 2,2; ...; 2,10 and so on and that is obviously not what I want.
What I would like is a scatter in which every dot represents 1% of the population and which makes visible the different levels of dispersion in emission levels among the income deciles. I guess I took a wrong turn in thinking somewhere and I am thankful for another idea!
Best,
Julian
I am looking for a way to plot income deciles on emission deciles. I have about 10.000 observations and created deciles as follows:
Code:
*make income deciles xtile net_income_month_dec = net_income_month, nq(10) *make deciles for emissions xtile e_md_dec = e_md, nq(10)
Code:
scatter e_md_dec net_income_month_dec
What I would like is a scatter in which every dot represents 1% of the population and which makes visible the different levels of dispersion in emission levels among the income deciles. I guess I took a wrong turn in thinking somewhere and I am thankful for another idea!
Best,
Julian
Comment