Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Macros for the Design and Analysis of Experiments

ADXALIAS: Compute the Alias Structure

%adxalias(ds, vlst, nv, res, nb, NOPRINT)

where

dsgives the name of the SAS data set that contains the design. The design must be in coded form, either as originally constructed or after recoding with the ADXCODE macro.
vlstlists the design factors.
nvgives the number of design factors. By default, nv is constructed from vlst.
resgives the resolution for the design.
nbgives the number of blocks in the design.
NOPRINTsuppresses listing the alias structure. This is useful when you want only the output data sets.

By default, if ds, vlst, res, or nb are omitted, the values from the last design constructed are used.

In orthogonally confounded fractional factorial designs, certain effects are confounded or aliased with each other. The alias structure of the design is the pattern of this confounding.

The ADXALIAS macro

It is a good idea to examine the alias structure of your design before decoding it, and to name factors so that effects you want to estimate are estimable and not aliased with one another. Alternatively, you can use the FACTEX procedure to construct and decode the design; in this procedure you can directly specify which effects to estimate and which effects to consider nonnegligible. See Part 3, "The FACTEX Procedure," for more details on using the FACTEX procedure.

Suppose you create a fractional factorial design for 5 factors in 16 runs and 4 blocks and you output it to the data set DESIGN with the following statements:

   %adxgen
   %adxff
   %adxinit
   %adxffd(design,5,16,4)
To examine the alias structure of this design, submit the statement
   %adxalias(design,t1 t2 t3 t4 t5,5,4,4)

The statement above uses the default variable names for treatment factors. If you call the ADXALIAS macro immediately after constructing the design, you can leave all parameters blank. Thus, the following statements produce the same output as the two sets of statements above:

   %adxgen
   %adxff
   %adxinit
   %adxffd(design,5,16,4)
   %adxalias()

Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Top
Top

Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.