Chapter Contents |
Previous |
Next |
The MEANS Procedure |
Procedure features: |
|
Program |
options nodate pageno=1 linesize=80 pagesize=60;
proc means data=cake n mean max min range std fw=8; |
var PresentScore TasteScore; title 'Summary of Presentation and Taste Scores'; run; |
Output |
PROC MEANS lists PresentScore first because this is the first variable specified in the VAR statement. A field width of eight truncates the statistics to four decimal places. | |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.