data bone; infile '../multivar/BONE.DAT'; input person y1-y4; drop person; run;
data set1; input DONUT FAT1-FAT6; FAT=FAT1; REP=1; output; FAT=FAT2; REP=2; output; FAT=FAT3; REP=3; output; FAT=FAT4; REP=4; output; FAT=FAT5; REP=5; output; FAT=FAT6; REP=6; output; drop FAT1-FAT6; cards; 1 64 72 68 77 56 95 2 78 91 97 82 85 77 3 75 93 78 71 63 76 4 55 66 49 64 70 68 ; run;