Name and Absence are character variables; the rest are numeric. Which MEANS procedure will compute the upper quartile and variance for only project, quiz, and test scores?
Name
Absence
proc means data=students.bio1 q3 var; run;
proc means data=students.bio1 q3 var; var project quiz1 quiz2 test1 test2; run;
proc means data=students.bio1 q3 var; var name id absence project quiz1 quiz2 test1 test2; run;
Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.