I regress two models as
xtreg Y = a + a1 X1 +a2X2+....+a9X9 + i.year, fe vce(cluster id)
estimates store reg1
Xtreg Y = b + b1 Z1 +b2Z2+....+b9Z9 + i.year, fe vce(cluster id)
estimates store reg2
I now want to have a coefplot with for only "a1" and "b1". How do I do this?
xtreg Y = a + a1 X1 +a2X2+....+a9X9 + i.year, fe vce(cluster id)
estimates store reg1
Xtreg Y = b + b1 Z1 +b2Z2+....+b9Z9 + i.year, fe vce(cluster id)
estimates store reg2
I now want to have a coefplot with for only "a1" and "b1". How do I do this?
Comment