Hi all, thanks in advance.
I've been searching for a while and haven't been able to be successful to find a solution.
I'm looking at a bunch of survey data, and running the chi-square tests for categorical variables have been straightfoward with the following code that I'm using:
PROC SURVEYFREQ DATA=xxx;
cluster yyy;
strata zzz;
weight aaa;
VAR Kidney*Gender/row chisq;
RUN;
I have been trouble coming up with the code to run the t-tests similarly for continuous variables however. Could someone give me an example? The proc t-test doesn't seem appropriate for the large weighted survey data - is there a similar way to do this with surveymeans?
Thanks.