Hello,
I am running a series of regressions and I would like to report the results using Bonferroni-adjusted p-values.
My data looks something like this, and I run 3 regressions on 3 different dependent variables and 4 different regressors:
Ideally, the final table should show Bonferroni adjusted p-values under the standard errors.
Does anyone know how I can do this?
thanks a lot
I am running a series of regressions and I would like to report the results using Bonferroni-adjusted p-values.
My data looks something like this, and I run 3 regressions on 3 different dependent variables and 4 different regressors:
Code:
sysuse auto
gen log_price=log(price)
gen sqrt_price=sqrt(price)
reg price mpg rep78 i.foreign weight
eststo reg1
reg log_price mpg rep78 i.foreign weight
eststo reg2
reg sqrt_price mpg rep78 i.foreign weight
eststo reg3
esttab reg1 reg2 reg3
------------------------------------------------------------
(1) (2) (3)
price log_price sqrt_price
------------------------------------------------------------
mpg 27.32 -0.00148 0.0445
(0.35) (-0.15) (0.11)
rep78 121.1 0.0336 1.069
(0.36) (0.81) (0.59)
0.foreign 0 0 0
(.) (.) (.)
1.foreign 3520.3*** 0.508*** 20.84***
(4.11) (4.75) (4.45)
weight 3.565*** 0.000469*** 0.0201***
(5.42) (5.72) (5.60)
_cons -6729.6 6.979*** 4.697
(-1.95) (16.23) (0.25)
------------------------------------------------------------
N 69 69 69
------------------------------------------------------------
t statistics in parentheses
* p<0.05, ** p<0.01, *** p<0.001
Does anyone know how I can do this?
thanks a lot

Comment