proc npar1way data=lb3 wilcoxon ;
where cohort in ('Cohort 1','Cohort 3') and visitn>0 and chg>. ;
&tst. where also stratum='HV+CKD' and testcd='FE' and visitn=12 ;
var chg ;
exact wilcoxon ;
class cohort ;
by stratum testcd test visitn ;
output out=wrstst13(keep=stratum testcd test visitn xp2_wil) wilcoxon ;
run ;
In the above code in the output statement it is written to keep variable xp2_wil , but there is no xp2_wil variable present in lb3 , so how come xp2_wil variable is getting created.?