After running the regression, I did the lincom, and then stored the estimates (with local as well as esttad scalar commands). After that I try to plot these estimates by using coefplot. I am unable to. Can someone please help? Also, if possible, I'd like to do the graphs inside the loop.
Is there another way of graphing lincom estimates other than using coefplot? Here is my command:
loc interact_controls "c.subj_male#c.conf_male c.subj_male#c.conf_female c.subj_female#c.conf_male c.subj_female#c.conf_female"
foreach DV of varlist ped_help eyecontact ped_comfort {
reg `DV' `interact_controls', noc cluster(CLUSTER)
* Male subject (DVs) female confederate more/less by (coefficient)
lincom c.subj_male#c.conf_female - c.subj_male#c.conf_male
loc coef_msubj_conf = r(estimate)
loc se_msubj_conf = r(se)
* Female subject (DVs) female confederates more/less by (coefficient)
lincom c.subj_female#c.conf_female - c.subj_female#c.conf_male
loc coef_fsubj_conf = r(estimate)
loc se_fsubj_conf = r(se)
* Difference of the two lincom estimates
lincom coef_msubj_conf - coef_fsubj_conf
loc coef_diff = r(estimate)
loc se_diff = r(se)
* Plot lincom coefficient estimates and standard errors
*coefplot coef_msubj_conf coef_fsubj_conf coef_diff, drop(_cons) yline(0) vertical bycoefs byopts(yrescale)
}
Related Posts with Storing and graphing the lincom estimates (inside the loop)
Regression in data panel. Collinearity with FEHello, I am struggling with my data panel analysis. I am conducting a research with information of …
Quantile regression - error message for Q(1)Dear group This is my first time that I post a question. Command: qreg Y1 X1 X2 X3, quantile (?) …
Reformatting Matrix for Event StudyDear Statlists, I am currently working on an event study with a focus on the acquirers stock price …
Between group difference of 2 groups with covariate-adjusted meansHi, I am new to Stata and I need to know how can I go about comparing the adjusted means between 2 …
extracting components from filename including special charactersHi, i received a bunch (several hundred) of xls. files that should be read into Stata. Unfortunately…
Subscribe to:
Post Comments (Atom)
0 Response to Storing and graphing the lincom estimates (inside the loop)
Post a Comment