Hello all,
I am having trouble appending the results of successive regressions to my output file on Stata12. This is baffling because:
a. I've used the do file with outreg2 commands on Stata10 before and it worked.
b. If I save the results to a new file the outreg2 command works, but I have a separate file for each regression result.
I'm attaching the code with the hope that someone can help me out:
outreg2 using /Users/nabeela/data/var/TABLE1_sep28, title (Table 1: Effect of X on Y - 1995-2005, Dependent variable - Y) ctitle (2SLS) drop(dyr*) bdec(3) sdec(3) alpha (0.01, 0.05, 0.10) addstat (LM (underid), e(idstat), p-val of LM, e(idp), Wald (weak instruments), e(rkf), Hansen J, e(j)) addnote("", year dummies not shown, Exogenous instrument - grt) label word append
The error message I get is:
in range not allowed
r(101);
I'd very much appreciate some pointers on this. Thanks!
Nabeela Alam
I am having trouble appending the results of successive regressions to my output file on Stata12. This is baffling because:
a. I've used the do file with outreg2 commands on Stata10 before and it worked.
b. If I save the results to a new file the outreg2 command works, but I have a separate file for each regression result.
I'm attaching the code with the hope that someone can help me out:
outreg2 using /Users/nabeela/data/var/TABLE1_sep28, title (Table 1: Effect of X on Y - 1995-2005, Dependent variable - Y) ctitle (2SLS) drop(dyr*) bdec(3) sdec(3) alpha (0.01, 0.05, 0.10) addstat (LM (underid), e(idstat), p-val of LM, e(idp), Wald (weak instruments), e(rkf), Hansen J, e(j)) addnote("", year dummies not shown, Exogenous instrument - grt) label word append
The error message I get is:
in range not allowed
r(101);
I'd very much appreciate some pointers on this. Thanks!
Nabeela Alam
Comment