SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Computing Statistics for Numeric Variables
Selecting Statistics and Variables


Question: Which MEANS procedure will compute only the average, minimum, and maximum values for all numeric variables in the Students.Bio1 data set?

 proc means data=students.bio1;
 run;

 proc means data=students.bio1 avg min max;
 run;

 proc means data=students.bio1 mean min max;
 run;




  back||next


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

Terms of Use & Legal Information | Privacy Statement