Hello all,
I need some help creating an output table on to a word doc composed of multiple IV regressions (using ivreghdfe). I have three different IV regressions, which can be expressed as follow:
Reg 1:
Reg 2:
Reg 3:
where each regression has an added instrument in the form (z*) and each regression has the same control variable(c) as well as absorbing the variable "year".
I would like to create an output table with two panels: The top panel (let this be known as Panel 1) should be composed of the results for the previously mentioned second stage regressions. The bottom panel (Panel 2), should be composed of the results of the three different first stage regressions that correspond to the second stage regressions of Panel 1. In a separate row at the bottom table of the table, I would also like to have the value of the F-statistic of the excluded instruments.
Anyone know how to code this? Thanks!
I need some help creating an output table on to a word doc composed of multiple IV regressions (using ivreghdfe). I have three different IV regressions, which can be expressed as follow:
Reg 1:
Code:
ivreghdfe y (x=z1) c, a(year)
Code:
ivreghdfe y (x=z1 z2) c, a(year)
Code:
ivreghdfe y (x=z1 z2 z3) c, a(year)
I would like to create an output table with two panels: The top panel (let this be known as Panel 1) should be composed of the results for the previously mentioned second stage regressions. The bottom panel (Panel 2), should be composed of the results of the three different first stage regressions that correspond to the second stage regressions of Panel 1. In a separate row at the bottom table of the table, I would also like to have the value of the F-statistic of the excluded instruments.
Anyone know how to code this? Thanks!