The
analyses are written to the output in order of increasing values of
the _TYPE_ variable, which is calculated by PROC MEANS. The _TYPE_
variable has a unique value for each combination of class variables;
the values are determined by how you specify the CLASS statement,
not the TYPES statement. Therefore, if you specify
class A B C;
types (A B)*C;
then
the B*C analysis (_TYPE_=3) is written first, followed by the A*C
analysis (_TYPE_=5). However, if you specify
class B A C;
types (A B)*C;
then the A*C analysis
comes first.
The _TYPE_ variable
is calculated even if no output data set is requested.
For more information
about the _TYPE_ variable, see Output Data Set.