Using SAS 9.4
I am running the following code:
proc univariate data= have normal plots;
class graft;
var age_sx bmi_sx ;
run;
proc npar1way data= have wilcoxon;
class graft;
var age_sx ;
OUTPUT OUT= KW_PVALS (KEEP=_VAR_ P_KW);
RUN;
PROC PRINT DATA = KW_PVALS;
run;
ai would like to present the 95% CI along with the p-value. Is there a good method for producing that from the code I already have? Thank you