Chapter Contents |
Previous |
Next |
The MEANS Procedure |
Procedure features: |
| |||||||||||||||
Other features: |
| |||||||||||||||
Data set: | CAKE |
Program |
options nodate pageno=1 linesize=80 pagesize=60;
proc means data=cake chartype nway noprint; |
class flavor /order=freq ascending; class layers /missing; |
var TasteScore; |
output out=cakestat max=HighScore; run; |
proc print data=cakestat; title 'Maximum Taste Score for Flavor and Cake Layers'; run; |
Output |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.