Hey All
Suppose I run a regression by the command:
.
Now If I can use: "_b[var2]" to store the coefficient from the regression, for example:
And if I want to store the standard error of the coefficient I can write:
But if I want to the same for the 95% confidence interval that Stata calculate automatically, what should I write? I haven't managed to find anything when I used "help reg"
Thanks,
Fitzgerald
Suppose I run a regression by the command:
Code:
reg var1 var2
Now If I can use: "_b[var2]" to store the coefficient from the regression, for example:
Code:
scalar beta1 = _b[var2]
Code:
scalar stderr = _se[var2]
Thanks,
Fitzgerald
Comment