Using a twoway bar
in Stata, I want to represent the values of two variables for each year. Anyways, if the bar variable shown in the front for a given year has a value greater than the one in the back, it is not possible to see the other variable's value in the graph, as it is covered.
As I don't want to use transparency options, is there a way to tell Stata something like "for each year, the lowest value should be shown as the bar in front"?
I cannot share my data but I can share the command I was using:
twoway bar Apples year, col(cranberry) lc(black) || ///
bar Melons year, col(forest_green) lc(black) ||, ///
legend(label(1 "Schools") label(2 "Churches")) ///
ytitle("Apples/Melons count")