Dear Stata Users,
I have run 6 different regressions and displayed the results on esttab, and I would like to know how can I extract a beta value based on position [row, column] . I am currently using Stata 17.

But when I try to extract the b values, I end up with a syntax error
Any help, I will appreciate.
Thank you all,
Max
I have run 6 different regressions and displayed the results on esttab, and I would like to know how can I extract a beta value based on position [row, column] . I am currently using Stata 17.
Code:
esttab without_V1 with_V1 without_F1 with_F1 without_R1 with_R1, keep(b1:_cons b2:_cons b3:_cons) /// se(3) b(3) star(* 0.1 ** 0.05 *** 0.01) stats(r2_a)
But when I try to extract the b values, I end up with a syntax error
Code:
scalar beta_V_without = r(coefs)[1,1] scalar beta_V_with = r(coefs)[1,2]
Thank you all,
Max
Comment