|
Chapter Contents |
Previous |
Next |
| Details of the FACTEX Procedure |
| See FACTEX14 in the SAS/QC Sample Library |
If a design has resolution IV, then you can simultaneously estimate all main effects and some two-factor interactions. However, not all resolution IV designs are equivalent; you may be able to estimate more two-factor interactions with some than with others. Among all resolution IV designs, a design that allows you to estimate the maximum number of two-factor interactions is said to have minimum aberration.
For example, if you use the FACTEX procedure to generate a resolution IV two-level design in 32 runs for seven factors, you will be able to estimate all main effects and 15 of the 21 two-factor interactions with the design that is created by default. The following statements create this design and display its alias structure in Output 15.11.1:
proc factex;
factors a b c d e f g;
model resolution=4;
size design=32;
examine aliasing;
run;
Output 15.11.1: Alias Structure for Default 27-2IV Design
|
proc factex;
factors a b c d e f g;
model resolution=4 / minab
size design=32;
examine aliasing;
run;
The alias structure for the resulting design is shown in Output 15.11.2.
Output 15.11.2: Alias Structure for Minimum Aberration 27-2IV Design
|
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.