Dear all,
I want to create a regression table with multiple tables in it (and with the p-value of the variables). I tried the following code;
So now I have the 6 models created individually but I want to create one table with the coefficients, p-value, and r squared. Does someone know how to do that?
Thanks in advance
I want to create a regression table with multiple tables in it (and with the p-value of the variables). I tried the following code;
Code:
xtreg returnoninvestment pat_yr, fe estimates store m1, title(Model 1) xtreg returnoninvestment maactive, fe estimates store m2, title(Model 2) xtreg returnoninvestment c.pat_yr#maactive, fe estimates store m3, title(Model 3) xtreg returnoninvestment totalma, fe estimates store m4, title(Model 4) xtreg returnoninvestment employees, fe estimates store m5, title(Model 5) xtreg returnoninvestment assetstotal, fe estimates store m6, title(Model 6)
Thanks in advance
Comment