Hello, I am working in SAS Studio analyzing the HEART dataset. The below is my code. The boldened text is the problem code. The Logit_Dia variable is not returning any data back. Is there anything obvious I am missing here? proc means data=out3 nway; class mrw_group; var mrw; output out=Out4a Mean=CHD_Mean mean(mrw)=MRW_Mean; run; proc means data=out3 nway; class height_group; var height; output out=Out4b Mean=CHD_Mean mean(height)=height_Mean; run; proc means data=out3 nway; class weight_group; var weight; output out=Out4c Mean=CHD_Mean mean(weight)=weight_Mean; run; data out5a; set out4a; Logit_Dia = log( CHD_Mean / (1 - CHD_Mean) ); run; data out5b; set out4b; Logit_Dia = log( CHD_Mean / (1 - CHD_Mean) ); run; data out5c; set out4c; Logit_Dia = log( CHD_Mean / (1 - CHD_Mean) ); run;
... View more