Chapter Contents |
Previous |
Next |
The MEANS Procedure |
Procedure features: |
| |||||
Other features: |
| |||||
Data set: | GRADE |
Program |
options nodate pageno=1 linesize=80 pagesize=60;
proc sort data=Grade out=GradeBySection; by section; run; |
proc means data=GradeBySection min max median; |
by section; |
class Status Year; |
var Score; title1 'Final Exam Scores for Student Status and Year of Graduation'; title2 ' Within Each Section'; run; |
Output |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.