Hello everyone,
I would be thankful if I could get some insights on running basic bivariates (ANOVA, t-test and Correlation) in a multiply imputed dataset from a complex survey. I see that it is suggested to use Surveyreg for ANOVA, however, I only get F-value for ANOVA and would like to see means and SD for all categories; Can't find for t-test and correlation. Also, how do I pool the estimates from mianalyze?
This is the command I am using for ANOVA. Thanks.
Proc SURVEYREG data=bivariate;/*ANOVA**/
class ALC;
stratum RAESTRAT;
cluster RAEHSAMP;
weight APOE_NORM;
by _imputation_;
model cogscr=ALC /ANOVA;
run;
... View more