Hello,

I am trying to combine a clustered-type bar chart with a scatter plot (I know it's an odd combination but is needed).
I can create the two separately as I want with:-
Code:
graph bar result1 result2 result3, over(region)
scatter basevalue region
But when I try to combine the two, I am not able to get the bar as clusters. The option over() is apparently not allowed with twoway:-
Code:
twoway (bar result1 result2 result3, over(region)) (scatter basevalue region)
This one works, but the bars are stacked, which I don't want
Code:
twoway (bar result1 result2 result3 region) (scatter basevalue region)
Is there a work around? Would appreciate any help! I'm new to making graphing with stata.