Hey guys,
in the context of my master thesis, I need to run some quantile regressions. However, when I run the following section of my code
STATA runs the quantile regressions up to the .9 regression but not the .95 regression. How could this be?
Thanks in advance,
Mario
in the context of my master thesis, I need to run some quantile regressions. However, when I run the following section of my code
Code:
forvalues qq = .05(.05).95 { qreg yt_1 nfci yt, quantile(`qq') vce(robust) }
Thanks in advance,
Mario
Comment