Chapter Contents |
Previous |
Next |
Details of the FACTEX Procedure |
proc factex; factors a b; output out=one pointrep =3; run; output out=two designrep=3; run;
The output data sets ONE and TWO have the same 12 runs, but they are in different orders. in the data set ONE, the POINTREP= option causes all three replications of each run to occur together, as shown in Figure 15.1.
On the other hand, in the data set TWO, the DESIGNREP= option causes all four runs of the design to occur together three times, as shown in Figure 15.2.
To achieve this goal, a collection of environmental conditions (settings for the noise factors) is determined. This collection is called the outer array. Each run in the control factor design (inner array) is replicated within each of these environments. The mean and variance of the process over the outer array are computed for each run in the inner array. Either the outer array or the inner array may consist of all possible different settings for the associated factors, or they may be fractions of all possible settings.
You can replicate designs in this way by using data set names for the POINTREP= and DESIGNREP= options in the OUTPUT statement. If you construct a design for your control factors and you want to run a noise factor design for each run in the control factor design, specify the data set that holds the noise factor design (that is, the outer array) with the POINTREP= option in the OUTPUT statement. See Example 15.14 for an example.
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.