data _null_;
infile datalines;
filename setup "impute_describe.set";
file setup;
input;
put _infile_;
datalines4;
title Multiply imputed design-based statistical description;
datain feb.mi_ckd;
dataout feb.ckd_imp;
* impute keywords;
default transfer;
continuous age gfr_24sp bmi ;
categorical sex race_eth agecat3 ckd;
iterations 10;
multiples 5;
seed 100;
weight cnics_wt;
* describe keywords;
estout desexam2;
model mult;
table ckd;
/* contrast sex*race_eth*agecat3 ;*/
run;
;;;;
%describe(name=impute_describe, dir=.);
I think you are missing the mdata statement. The default is skip (complete case analysis)
Raghu
--
You received this message because you are subscribed to the Google Groups "IVEware" group.
To unsubscribe from this group and stop receiving emails from it, send an email to iveware+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "IVEware" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/iveware/KTgvKmxAWZE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to iveware+u...@googlegroups.com.
You may have to combine some strata to have at least 2 clusters in the combined strata.
Another conservative approach is not to use stratification.
Raghu