I am creating coefficient plots for different models next to each other, and I want to change the colour of the confidence intervals in each one of the models, but whatever I try it changes the colours of all plots. Here is a reproducible example:
How do I change stata what specific colour I want for each of the two plots? For example how do I change the colour of the confidence intervals on the plot on the right to red?
Thank you very much!
Code:
sysuse auto, clear reg rep78 mpg estimate store reg1 reg turn mpg estimate store reg2 coefplot reg1, bylabel(Reg1) || reg2, bylabel(Reg2) ||, keep(mpg) xline(0, lpattern(dash)) nokey ciopts(lcolor("blue") recast(rcap)) color("blue") subtitle(, fcolor(white) margin(medium) lcolor(gs10) lwidth(thick)) byopts(rows(1) graphregion(color(white))) level(90)
Thank you very much!
Comment