I have a stacked bar graph of 2 variables over years. I want to add a line for year information of another varaible (or another stacked bar of 2 varaibles over years if possible)
My current code :
graph bar (asis) full_puty full_cally if dec2==10, over(year, label(labsize(vsmall))) stack bar(1, fcolor(gs8) lcolor(black)) bar(2, fcolor(gs14) lcolor(black)) title(Proportion of contracts in Top IS Decile) legend(order(1 "Put" 2 "Call" ))

My current code :
graph bar (asis) full_puty full_cally if dec2==10, over(year, label(labsize(vsmall))) stack bar(1, fcolor(gs8) lcolor(black)) bar(2, fcolor(gs14) lcolor(black)) title(Proportion of contracts in Top IS Decile) legend(order(1 "Put" 2 "Call" ))
Comment