Hi, I am creating a coefficient plot with confidence intervals at the 99, 95, 90 percent significance intervals. I would like the confident intervals to be different colours depending on the significance level
I tried adding the following:
but it seems only the 99% confidence interval is affected, how can I chose the colour of each confidence interval?
Code:
sysuse auto eststo reg_1: reg price mpg eststo reg_2: reg price mpg headroom coefplot reg_1 reg_2, keep(mpg) levels(99 95 90)
Code:
coefplot (reg_1, mcolor(ebblue) ciopts(color(ebblue))) (reg_2, mcolor(ebblue) ciopts(color(ebblue))), keep(mpg) levels(99 95 90)
Comment