Create the CAKETYPE data set. CAKETYPE
contains the cake flavors and number of layers that must occur in the PROC
MEANS output.
data caketype;
input Flavor $ 1-10 Layers 12;
datalines;
Vanilla 1
Vanilla 2
Vanilla 3
Chocolate 1
Chocolate 2
Chocolate 3
;