Hey!
I'm creating a simple bar graph and I have difficulties to change the width of the bars. When I try 'barwidth', then I get the error that this option is not allowed. I tried with the following code with 'bargap' and I don't obtain an error message but nothing changes. Can you please help me?
Best regards Christoph
I'm creating a simple bar graph and I have difficulties to change the width of the bars. When I try 'barwidth', then I get the error that this option is not allowed. I tried with the following code with 'bargap' and I don't obtain an error message but nothing changes. Can you please help me?
Best regards Christoph
Code:
recode pgma (0=2) #delimit ; graph bar (mean) prelapse, over(pgma) bargap(-30) note("Source: Created by the author based on PGMD and UCDP data") scheme(s1mono) blabel(bar, position(outside)) ytitle("Percentage of recurring conflicts to total number of conflicts") title("Relative frequencies of conflict recurrences") legend(label(1 "conflicts with previous PGM activities") label(2 "conflicts without previous PGM activities")) name(grapha, replace); #delimit cr recode pgma (2=0)
Comment