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
Confidence interval of what? In which data set?
I need to confidence interval of the median as my data is not normally distributed. CIbasic in the proc univariate would work except that statements assumes the normality of the data
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
Explore Now →SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.