Hi everyone,
I am estimating a multiequation model in which I have to test (1) If a subset of regressors X1 is jointly significant for all equations; and (2) If a subset of regressors X1 is jointly significant for each equation. I want to report each tests for X1 below the corresponding column of each equation. However, outreg2 assigns the same value for all equations (columns) of the table. I tried to go and append tables equation by equation, using eqkeep(), but outreg2 stacks new added stats instead of allowing for new realizations of the stats in the same row. To be crystal clear, I get
_____ | eq1 | eq2 | eq3|
x11 | coef1 | coef2 | coef3|
_____ | (sd1) | (sd2) | (sd3) |
testall | v0 | v0 | v0
testeq1 | v1 | v1 | v1
testeq2 | v2 | v2 | v2
testeq3 | v3 | v3 | v3
and I want
____ | eq1 | eq2 | eq3|
x11 | coef1 | coef2 | coef3|
____ | (sd1) | (sd2) | (sd3) |
testall | v0 | v0 | v0
testeq | v1 | v2 | v3
Any ideas on how to do this? Thank you
I am estimating a multiequation model in which I have to test (1) If a subset of regressors X1 is jointly significant for all equations; and (2) If a subset of regressors X1 is jointly significant for each equation. I want to report each tests for X1 below the corresponding column of each equation. However, outreg2 assigns the same value for all equations (columns) of the table. I tried to go and append tables equation by equation, using eqkeep(), but outreg2 stacks new added stats instead of allowing for new realizations of the stats in the same row. To be crystal clear, I get
_____ | eq1 | eq2 | eq3|
x11 | coef1 | coef2 | coef3|
_____ | (sd1) | (sd2) | (sd3) |
testall | v0 | v0 | v0
testeq1 | v1 | v1 | v1
testeq2 | v2 | v2 | v2
testeq3 | v3 | v3 | v3
and I want
____ | eq1 | eq2 | eq3|
x11 | coef1 | coef2 | coef3|
____ | (sd1) | (sd2) | (sd3) |
testall | v0 | v0 | v0
testeq | v1 | v2 | v3
Any ideas on how to do this? Thank you