Hello all,
Am tring to use proc capability to do a test of normal distribution. But since this procedure is very new to me, I will be grateful for any help. Here is my code
proc capability data=sashelp.heart normaltest;
*CHECKINDICES(test=SW );
var agechddiag;
run;
I only wish to output the Shapiro-Wilk (SW), Kolmogorov-Smirnov (KS) test. I taught I could use the
CHECKINDICES(test=SW|KS) statements as stated in the sas documentation but I still get all tables outputted. I only need the table with the Normaldistribution.
My second question is how can I output this as a sas table. I used output out= myoutdata but I got 0 observations outputted.
... View more