Hello, everyone. I am new to Stata. I am so sorry for my fundamental question. I composed a graph related to “coefplot” using the following command with sample data(nlsw88.dta).
sysuse nlsw88 dta, clear
reg wage i.race i.union if industry == 4
estimates store A
reg wage i.race i.union if industry == 6
estimates store B
reg wage i.race i.union if industry == 7
estimates store C
reg wage i.race i.union if industry == 11
estimates store D
reg wage i.race i.union if industry == 12
estimates store E
coefplot (A) || (B) || (C) || (D) || (E) ||, keep(2.race 3.race) vertical yline(0)
I would like to make this more organized due to a constraint on space. Does anyone know how to combine A, B, C, D, and E into one table? In case anyone asked before, kindly let me know the URL.
Thank you very much for your support.
sysuse nlsw88 dta, clear
reg wage i.race i.union if industry == 4
estimates store A
reg wage i.race i.union if industry == 6
estimates store B
reg wage i.race i.union if industry == 7
estimates store C
reg wage i.race i.union if industry == 11
estimates store D
reg wage i.race i.union if industry == 12
estimates store E
coefplot (A) || (B) || (C) || (D) || (E) ||, keep(2.race 3.race) vertical yline(0)
I would like to make this more organized due to a constraint on space. Does anyone know how to combine A, B, C, D, and E into one table? In case anyone asked before, kindly let me know the URL.
Thank you very much for your support.
Comment