I have multiple regressions and I used the coefplot command to add all of the confidence intervals on one graph with a bar. Is it possible to change the color of the bars to be the same for each dependent variable in the graph. Here is my code below:
coefplot (A, label("Male")) (B, label("Female")) (C, label("Male")) (D, label("Female")) (E, label("Male")) (F, label("Female")) (G, label("Male")) (H, label("Female")), xline(0) recast(bar) ciopts(recast(rcap)) citop barwidt(0.3)
Thank you.
You should be able to do something like
This would make it so that all the bars labeled "male" are grey and those labeled "female" are blue.