SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Computing Statistics for Numeric Variables
Group Processing


Question: Complete the program below so that the MEANS procedure will group statistics by the values of Absence.

proc sort data=students.bio1 out=work.bio1sort;
   
run;
proc means data=work.bio1sort mean maxdec=1;
   var project test1 test2;
   by absence;
run;

           


  back||next


Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.

Terms of Use & Legal Information | Privacy Statement