To compute confidence interval for median with SAS, we should use this program :

__________________________________________________

If there is an assumption of normality

proc univariate data=DATA_SET ciquantnormal(alpha=.05);

var VARIABLE_OF_INTEREST;

run;

__________________________________________________

If there is no assumption of normality :

proc univariate data=DATA_SET ciquantdf(alpha=.05);

var VARIABLE_OF_INTEREST;

run;

__________________________________________________

But how to do it with SPSS ?

Similar questions and discussions