Dear Stata user,
I use -cibplot- (from SSC, the author is Nick Cox) to produce bar of means with confidence intervals. It is quite convenient, however, it seems that the command does not allow to put bars in prespecified order, just like what we can do in graph bar with option over(, sort(varname | #) ). And I also find that it's ytitle option is a bit of weird, because some setting can be performed using l1title other than ytitle.
I use -cibplot- (from SSC, the author is Nick Cox) to produce bar of means with confidence intervals. It is quite convenient, however, it seems that the command does not allow to put bars in prespecified order, just like what we can do in graph bar with option over(, sort(varname | #) ). And I also find that it's ytitle option is a bit of weird, because some setting can be performed using l1title other than ytitle.
Code:
webuse fullauto
cibplot price, by(rep77) ytitle("This" "Is" "A" "TEST") l1title("This" "Is" "A" "TEST")
cibplot price, by(rep77, sort(1) descending)
by() does not contain a valid varname
Comment