Dear Statalist,
I am trying to make a graph of all 20 coefficients with the bootstrapped CIs of 20 (leader) dummies from the following regression:
I try to use
But it does not show bootstrapped CIs. It shows CIs from the regression: reg Y leader* X1 X2 X3 X4, noconstant cluster(leaderID).
I also try to use boottest following this post https://www.statalist.org/forums/for...ence-intervals, but I cannot find a way with boottest.
Any help would be appreciated.
Many thanks in advance.
I am trying to make a graph of all 20 coefficients with the bootstrapped CIs of 20 (leader) dummies from the following regression:
Code:
forvalues i = 1/20 { gen leader`i' = (leaderID==`i') } reg Y leader* X1 X2 X3 X4, noconstant cluster(leaderID)
Code:
wildbootstrap reg Y leader* X1 X2 X3 X4, noconstant cluster(leaderID) coefplot, baselevels keep(leader*)
I also try to use boottest following this post https://www.statalist.org/forums/for...ence-intervals, but I cannot find a way with boottest.
Any help would be appreciated.
Many thanks in advance.
Comment