The PLAN Procedure |
Three Replications with Four Factors |
Suppose you want to determine if the order in which four drugs are given affects the response of a subject. If you have only three subjects to test, you can use the following statements to design the experiment.
proc plan seed=27371; factors Replicate=3 ordered Drug=4; run;
These statements produce a design with three replicates of the four levels of the factor Drug arranged in random order. The three levels of Replicate are arranged in order, as shown in Figure 65.1.
Factor | Select | Levels | Order |
---|---|---|---|
Replicate | 3 | 3 | Ordered |
Drug | 4 | 4 | Random |
You might also want to apply one of four different treatments to each cell of this plan (for example, applying different amounts of each drug). The following additional statements create the output shown in Figure 65.2:
factors Replicate=3 ordered Drug=4; treatments Treatment=4; run;
Plot Factors | |||
---|---|---|---|
Factor | Select | Levels | Order |
Replicate | 3 | 3 | Ordered |
Drug | 4 | 4 | Random |
Copyright © 2009 by SAS Institute Inc., Cary, NC, USA. All rights reserved.