Hi Statausers,
I know it's a very basic question, but I couldn't find the right answer. How can I add one mark in the x-axis in the middle of the axis saying 50%?
In case it's easier, it can be also a vertical line in the middle of the chart (so at the 50%)

I know it's a very basic question, but I couldn't find the right answer. How can I add one mark in the x-axis in the middle of the axis saying 50%?
Code:
graph bar (count) first_obs if first_obs == 1, over(seminar_series_mod_num, lab(nolab) sort(1)) ylabel(0 25 50 75 100 ) bar(1, fcolor(gs11) lcolor(white) lwidth(0.1)) graphregion(color(white)) bgcolor(white) ytitle("Number of Presentations")
Comment