Stata seemingly requires all bars in bar graphs to originate at zero. What if I'd like the bars to originate at my minimum, which is less than zero? In my example below, I'd like the bars to begin at -5 and all go upward, instead of some going down and some up:
graph bar (mean) dilma_minus_aecio, over(pref_symp, label(angle(0) labsize(vsmall) alternate tick labgap(0))) graphregion(color(white)) plotregion(lcolor(black)) ///
blabel(bar, format(%9.2f)) bar(1, color(black)) title("D: Rousseff - Neves feeling therms") ytitle("") ytick(-5 -2.5 0 2.5 5) ylab(-5 -2.5 0 2.5 5)

graph bar (mean) dilma_minus_aecio, over(pref_symp, label(angle(0) labsize(vsmall) alternate tick labgap(0))) graphregion(color(white)) plotregion(lcolor(black)) ///
blabel(bar, format(%9.2f)) bar(1, color(black)) title("D: Rousseff - Neves feeling therms") ytitle("") ytick(-5 -2.5 0 2.5 5) ylab(-5 -2.5 0 2.5 5)
Comment