Chapter Contents |
Previous |
Next |
The MEANS Procedure |
Procedure features: |
| |||||||||||||
Other features |
| |||||||||||||
Data set: | CAKE |
Program |
options nodate pageno=1 linesize=80 pagesize=64;
proc means data=cake fw=6 n min max median nonobs; |
class flavor/order=freq; class age /mlf order=fmt; |
types flavor flavor*age; |
var TasteScore; |
format age agefmt. flavor $flvrfmt.; title 'Taste Score for Cake Flavors and Participant''s Age'; run; |
Output |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.