I am trying to export the results of first stage regression in a word file table. However, using Outreg2 i am only able to get the second stage regression results
Below is my regression results and the code i ran to extract results to word file
Any help would be helpful. Thank you
Below is my regression results and the code i ran to extract results to word file
Code:
outreg2 using Reg2Event2.doc, append stat(coef tstat) ctitle(2SLS, AEM) addstat("F-statistic", e(F), "R-Squared", e(r2_b)) addtext(Industry Fixed Effect, YES, Year Fixed Effect, NO) dec(4) tdec(2)
Code:
xtivreg ABS_DA_w POST_REG INBD POSTREG_X_REM ROA_w Size MTB_x_w LEV_w NOA_X_w (REM_PROXY_w = Lag_ABS_DA), fe first small First-stage within regression Fixed-effects (within) regression Number of obs = 1,315 Group variable: id Number of groups = 281 R-squared: Obs per group: Within = 0.4889 min = 1 Between = 0.8082 avg = 4.7 Overall = 0.6542 max = 8 F(9,1025) = 108.93 corr(u_i, Xb) = 0.4034 Prob > F = 0.0000 REM_PROXY_w Coefficient Std. err. t P>t [95% conf. interval] POST_REG .0186762 .0080652 2.32 0.021 .00285 .0345024 INBD .0783671 .0643577 1.22 0.224 -.0479208 .2046551 POSTREG_X_REM .6598204 .0222133 29.70 0.000 .6162317 .7034092 ROA_w -.1308316 .0420391 -3.11 0.002 -.2133242 -.048339 Size .0271795 .0140415 1.94 0.053 -.0003739 .0547329 MTB_x_w -.0133533 .0042623 -3.13 0.002 -.0217171 -.0049895 LEV_w -.017941 .0324372 -0.55 0.580 -.0815918 .0457098 NOA_X_w .0118952 .0056894 2.09 0.037 .000731 .0230594 Lag_ABS_DA .0226871 .0434657 0.52 0.602 -.0626047 .1079789 _cons -.4367363 .2118211 -2.06 0.039 -.8523888 -.0210837 sigma_u .11201445 sigma_e .10246778 rho .54442229 (fraction of variance due to u_i) F test that all u_i=0: F(280, 1025) = 3.53 Prob > F = 0.0000 Fixed-effects (within) IV regression Number of obs = 1,315 Group variable: id Number of groups = 281 R-squared: Obs per group: Within = . min = 1 Between = 0.0018 avg = 4.7 Overall = 0.0000 max = 8 F(290,1025) = 0.43 corr(u_i, Xb) = -0.7818 Prob > F = 0.9196 ABS_DA_w Coefficient Std. err. t P>t [95% conf. interval] REM_PROXY_w -3.09999 6.098128 -0.51 0.611 -15.06623 8.866251 POST_REG .0653209 .1154681 0.57 0.572 -.16126 .2919018 INBD .2044777 .5204369 0.39 0.694 -.8167657 1.225721 POSTREG_X_REM 2.040223 4.023804 0.51 0.612 -5.855611 9.936058 ROA_w -.6007786 .7939438 -0.76 0.449 -2.158719 .9571623 Size .1016277 .1747267 0.58 0.561 -.2412353 .4444907 MTB_x_w -.0389572 .0808277 -0.48 0.630 -.1975638 .1196495 LEV_w -.031798 .1456086 -0.22 0.827 -.317523 .253927 NOA_X_w .0354542 .0755283 0.47 0.639 -.1127536 .1836621 _cons -1.526531 2.788213 -0.55 0.584 -6.997789 3.944727 sigma_u .36017545 sigma_e .32614935 rho .5494557 (fraction of variance due to u_i) F test that all u_i=0: F(280,1025) = 0.09 Prob > F = 1.0000 Instrumented: REM_PROXY_w Instruments: POST_REG INBD POSTREG_X_REM ROA_w Size MTB_x_w LEV_w NOA_X_w Lag_ABS_DA
Comment