Dear All, How can I can draw a graph like thisArray
which can be found here https://stats.stackexchange.com/ques...ile-regression.
The line passes A and B is the 90th quantile regression, and I'd like to add a 10th one. Any suggestions? You might want to use
Code:
sysuse nlsw88.dta, clear

qreg wage tenure, q(0.1)
qreg wage tenure, q(0.5)
qreg wage tenure, q(0.9)
I especially need the red density curve.