rsm7

2
 Journal of Statistical Software  7 5 16 8 2 10 7 1 1 1 65 2.378414 2.380476 6 8 4 4 10 7 1 1 1 65 2.378414 2.380476 7 16 1 2 10 2 1 1 1 46 2.378414 2.376354 8 16 5 2 10 5 1 1 1 57 2.378414 2.390457 9 16 4 2 10 4 1 1 1 54 2.378414 2.366432 10 8 2 4 10 4 1 1 1 54 2.378414 2.366432 The rst design listed is also the smallest; it consists of one cube block of 16 runs, plus 6 center points; and one star block with the points replicated once and one center point; thus, the total number of runs is  N  = (16 + 6) + (10 + 1) = 33. If we ch oose  α = 2, this design is both orthogonal and rotatable as seen by noting that  alpha.rot and  alpha.orth are both equ al to 2. The 16 design points in the cube bloc k may be genera ted by a 2 51 fractional factorial design. While this is a small design, we have only one center point in the star block, not providing a way to test lack of t in the star portion. The second and third designs remedy this slightly, but all these designs are fairly lopsided in that the cube block is much larger than the star block. The next few desi gns requir e consid era bly mor e run s. Des ign num ber 4 is nicel y balanced in that it consists of three blocks of 21 runs each, and it is both rotatable and orthog onal. How eve r, we still have no lack-of-t test in the star blocks. Desig ns 5 and 6 dier only in whether they use two 2 51 cubes or four 2 52 cubes, but they provide several center poin ts for a lac k-o f-t tes t. If we position the axis points at  α  = 2.38, the design is almost orthogonal and almost rotat abl e. The remaining designs als o come clo se to mee ting both criteria, but are also somewhat smaller, so that Designs 9 and 10 are essentially down-sized versions of Designs 5 and 6. The choice of which design is best depends on the tradeobetween economy and ability to assess the tted sur face. Des ign 1 is the only one of these that is inc luded in Tabl e 7.6 of Myers and Montgomery  ( 2002). It is good to be able to look at a broader range of choices. Once we decide the design, the  ccd  functi on is used to genera te it. We rs t ill ust rate the generation of Design 1 above. This desig n require s a 2 51 fraction for the cube block. Typ - ically, this is done by confounding the ve-way interaction with the mean; or equivalently, create a four-factor design, and generate the levels of the fth as the four-way interaction of the others. That is the approach imple men ted by  ccd. Suppose that we den ote the desi gn factors by  A, B,C,D,E  ; let’s opt to use  E  =  ABCD  as the generator. The following call generates the design (results not shown): R> des1 <- ccd (y1 + y2 ~ A + B + C + D, + generators = E ~ - A * B * C * D, n0 = c(6, 1)) The value of  α  was not specied, and by default it uses the  α  for ortho gonalit y. The rst argument could have been just  4, but then the generator would have had to have been given in terms of the default variable names  x1,  x2, . ... The optio nal lef t-hand side in the formula creat es place-hol ders for response var iable( s), to be lled -in with data later. As in  bbd, we could have added coding formulas to create a  coded.data object. Next, we illus trate the genera tion of Design 10. This desig n has four 2 52 cube blocks with 2 center points each, and one unre plicat ed star block with 4 center points. The non-cen ter points in the cube blocks comprise 4 × 8 = 32 runs, so we most likely want to create them by

Upload: marijanaz

Post on 03-Nov-2015

9 views

Category:

Documents


0 download

DESCRIPTION

rsm7

TRANSCRIPT

  • Journal of Statistical Software 7

    5 16 8 2 10 7 1 1 1 65 2.378414 2.3804766 8 4 4 10 7 1 1 1 65 2.378414 2.3804767 16 1 2 10 2 1 1 1 46 2.378414 2.3763548 16 5 2 10 5 1 1 1 57 2.378414 2.3904579 16 4 2 10 4 1 1 1 54 2.378414 2.36643210 8 2 4 10 4 1 1 1 54 2.378414 2.366432

    The first design listed is also the smallest; it consists of one cube block of 16 runs, plus 6center points; and one star block with the points replicated once and one center point; thus,the total number of runs is N = (16 + 6) + (10 + 1) = 33. If we choose = 2, this design isboth orthogonal and rotatable as seen by noting that alpha.rot and alpha.orth are bothequal to 2. The 16 design points in the cube block may be generated by a 251 fractionalfactorial design.

    While this is a small design, we have only one center point in the star block, not providing away to test lack of fit in the star portion. The second and third designs remedy this slightly,but all these designs are fairly lopsided in that the cube block is much larger than the starblock. The next few designs require considerably more runs. Design number 4 is nicelybalanced in that it consists of three blocks of 21 runs each, and it is both rotatable andorthogonal. However, we still have no lack-of-fit test in the star blocks. Designs 5 and 6 differonly in whether they use two 251 cubes or four 252 cubes, but they provide several centerpoints for a lack-of-fit test. If we position the axis points at = 2.38, the design is almostorthogonal and almost rotatable. The remaining designs also come close to meeting bothcriteria, but are also somewhat smaller, so that Designs 9 and 10 are essentially down-sizedversions of Designs 5 and 6.

    The choice of which design is best depends on the tradeoff between economy and ability toassess the fitted surface. Design 1 is the only one of these that is included in Table 7.6 ofMyers and Montgomery (2002). It is good to be able to look at a broader range of choices.

    Once we decide the design, the ccd function is used to generate it. We first illustrate thegeneration of Design 1 above. This design requires a 251 fraction for the cube block. Typ-ically, this is done by confounding the five-way interaction with the mean; or equivalently,create a four-factor design, and generate the levels of the fifth as the four-way interaction ofthe others. That is the approach implemented by ccd. Suppose that we denote the designfactors by A,B,C,D,E; lets opt to use E = ABCD as the generator. The following callgenerates the design (results not shown):

    R> des1