Hello community. I am producing a graph with Stata. Here is the output :
Array
And here is the code
Code:
graph bar var1 var2 var3 [aw=weight], ///
over(Catvar) ///
blabel(bar,format(%9.2f)) ///
legend(label(1 "Av. var1") label(2 "Av. var2") ///
label(3 "Avg 3")) yla(5(5)25,nogrid) graphregion(color(white))
I would rather like to put the bars of the same color side-by-side. So three groups (Av. var1 for the two groups of Catvar), (Av. var2 for the two groups of Catvar), and (Av. var3 for the two groups of Catvar). This is possible in Excel for example. Is it possible with Stata ? Any help is welcome.

Best.