I have been at this for a while and i am trying to code the SAS to read all the data I have imputed but it says that it is only reading 7 of the numbers. please help below I have entered the code that I have made and attached is the original question and data for context option ls=80; data example; input IGF female weight; cards; 1 24 1.30 1.20 1.09 1.27 1 22 1.15 1.18 1.03 1.10 1 19 1.26 1.24 1.28 1.20 1 10 1.08 1.19 1.04 0.98 2 57 1.13 1.11 0.86 0.91 2 61 1.08 0.94 1.07 1.10 2 52 0.98 0.96 0.94 1.01 2 53 0.92 0.89 0.87 1.07 ; /*these two commands can be used to start a new output file*/ ods html close; ods html; /*these two commands turn the graphic output on and off*/ ods graphics off; /*ods graphics on;*/ proc glm; class IGF weight; model female = IGF weight; lsmeans weight / stderr pdiff; run;
... View more