Hello there, I'm trying to calculate the mean difference of a variable among two independent groups. I know that the variable is NOT normally distributed so I use the Wilxocon test below: proc npar1way data = sample_data wilcoxon; class gender; var test_score; run; The data "sample_data" is generated by multiple imputation with almost 40 imputations. The original data has about 10,000 records which brings the imputed data to 400,000 records (40x10,000). Since the sample size is artificially very big due to imputations the mean difference looks extremely statistically significant. I was wondering how can I take into account that the data is constructed by 40 imputed data so that the significance of the mean difference can be calculated appropriately? Is there an option in the "proc npar1way" or do I need to use the estimators produced by PROC MIANALYZE in the next steps to calculate the mean difference of the two samples? Thanks a lot in advance!
... View more