Hello everyone! I want to replicate the table below with the results I have obtained from the loop of regressions that I show in the code. As you can see I have changed the labels in order to have the same variable names in the table. Anyone has an idea which commands I should use to store the results and show something as much similar as possible to the table below?

Thanks a lot.
Luciana
Code:
label variable ActualT "YouWinImpact"
label variable OwnEmp "Employed"
label variable TotEmp10 "10+Employees"
label variable TotEmp25 "25+Employees"
foreach name in "InnovIndex" "OwnEmp" "TotEmp10" "TotEmp25"{
reg `name' ActualT Strata if exist==0 & (type==1|type==2), vce(robust)
}
Thanks a lot.
Luciana

Comment