Hello,
I have a density plot below, using the code below. Is there a way to adjust the code so that the blue and grey bars are side by side instead of overlaying one another? And by side by side I mean grey blue grey blue grey blue, not all greys and then all blues.
TIA -
CJ
I have a density plot below, using the code below. Is there a way to adjust the code so that the blue and grey bars are side by side instead of overlaying one another? And by side by side I mean grey blue grey blue grey blue, not all greys and then all blues.
TIA -
CJ
Code:
*AFST score distribution: using score on first referral twoway histogram afst_score1 if screenedin==0, color(blue%60) || histogram afst_score1 if screenedin==1, percent title(AFST Score) legend(label (1 Screened Out)) legend(label(2 Screened In)) xtitle(AFST Score) ytitle(Density) graphregion(color(white)) xlabel(1 (1) 20) color(black%30)
Comment