Here is my data. It is in wide form (survey data). For instance I will use Vitamin D variable which is in continuous form and I have categorized it into binary form as given below. I created a "ciplot" for the prevalence of Vit D deficiency using the following code:
Code:
gen vitD_def=. replace vitD_def=1 if hydrov_unic<12 replace vitD_def=0 if hydrov_unic>11 & hydrov_unic<136 ciplot vitD_def [aw=nat_weight_bio], by(state) horizontal title("Prevalence of Vit D deficiency among 10 to 19 years") xtitle("Mean prevalence", size(small)) ytitle("States", size(small)) ylab(,labsize(small)) msymbol(circle) msize(vsmall)
Pardon if my question is not clear
Regards Array
0 Response to Graph label while using "ciplot" command
Post a Comment