Hi all,
Suppose I'm creating a graph like this:
To summarize, I'd like to underlay the bar graphs of le and le_b, and then overlay the female/male lines.
Now, Stata will not allow me to use the "over" option or the "bar" option for the bar graph. Can anyone recommend a solution?
Suppose I'm creating a graph like this:
Code:
sysuse uslifeexp, clear twoway (bar le le_b , over(year) bar(1,color(gray)) bar(1,color(black))) /// (line le_female year , sort(year) lcolor(red)) /// (line le_male year , sort(year) lcolor(yellow)) /// (line le_bfemale year , sort(year) lcolor(green)) /// (line le_bmale year , sort(year) lcolor(blue))
Now, Stata will not allow me to use the "over" option or the "bar" option for the bar graph. Can anyone recommend a solution?
Comment