Basically I want to regress one dependent variable A "individually" on several independent variables B,C,D (i.e. A on B, A on C and A on D). But the problem is that I want to use outreg2 to produce a table combining coefficients from these three different regressions into the same column. Like this:
| A | |
| coefficient of B | 5.2 |
| coefficient of C | 4.8 |
| coefficient of D | 2.0 |
| A | A | A | |
| Coefficient of B | 5.2 | ||
| Coefficient of C | 4.8 | ||
| Coefficient of D | 2.0 |

Comment