From: tablenc on
I am working with survey data and trying to figure out how to
calculate the overall prevalence of diabetes, prevalence of diabetes
by gender and by race. I know that I can get the prevalence of
diabetes by gender and by race with the following sas code and looking
at the row percent in the output. Is this correct?

proc surveyfreq data=
strata name ;
tables gender/race * diabetes / row;
weight name;
run;

Also, where do I look, in the output, to find the overall prevalence
of diabetes?