Chapter Contents |
Previous |
Next |
The MEANS Procedure |
Procedure features: |
| ||||||||||||
Data set: | CAKE |
Program |
options nodate pageno=1 linesize=80 pagesize=60;
data caketype; input Flavor $ 1-10 Layers 12; datalines; Vanilla 1 Vanilla 2 Vanilla 3 Chocolate 1 Chocolate 2 Chocolate 3 ; |
proc means data=cake range median min max fw=7 maxdec=0 classdata=caketype exclusive printalltypes ; |
class flavor layers; |
var TasteScore; Title 'Taste Score For Number of Layers and Cake Flavor'; run; |
Output |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.