Features: |
OUTPUT statement |
Other features: |
PRINT procedure |
Data set: | CAKE |
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;