Hi folks!
New to Stata graphs, my current code is...
However, I'd like to have sets of paired bars for each subject (biology, bmath, chemistry, etc.), one for males and one for females. Currently, there are two separate sets of bars for each subject. I'd like to reorganize the bars so each subjects' two bars (for M and F) are next to each other. Probably an easy thing, but I can't figure it out.
Help much appreciated!
New to Stata graphs, my current code is...
Code:
graph bar (mean) c_biology_fromF2 (mean) c_bmath_fromF2 (mean) c_chemistry_fromF2 (mean) c_civics_fromF2 (mean) c_english_fromF2 (mean) c_geography_fromF2 (mean) c_history_fromF2 (mean) c_kiswahili_fromF2, over(gender)
Help much appreciated!
Comment