Hello!

I am creating a bar graph with confidence intervals(picture attached below). It would be nice if I could label the bars itself so that it shows the values it conforms to. Does anyone have any suggestions? This is the code I used so far:

twoway (bar avg_vote_2010 gender,barwidth(0.8)) ///
(rcap low_val_2010 hi_val_2010 gender), ///
xlabel( 0 "Female" 1 "Male", noticks) ///
ytitle("Voting 2010 Average") by(actualtreatment)

My goal is to label the bars with the values of the variable "avg_vote_2010." This would be similar in effect to the "blabel" option for the "graph bar" command. I would greatly appreciate any suggestions!

Array