|
Chapter Contents |
Previous |
Next |
| Details of the FACTEX Procedure |
| See FACTEX8 in the SAS/QC Sample Library |
An experimenter wants to study the effect of cutting speed (SPEED) on the surface finish of a component. He considers testing the components at five levels of cutting speed (100, 125, 150, 175, and 200) and decides to test five components at each level.
The design used is a single-factor completely randomized design with five levels and 25 runs. The following statements generate the required design:
proc factex;
factors speed / nlev=5;
size design=25;
output out=surfexpt randomize /* Randomly assign run order */
speed nvals=(100 125 150 175 200);
run;
proc print data=surfexpt;
run;
The design saved in the data set SURFEXPT is displayed in Output 15.1.1.
Output 15.1.1: A Completely Randomized Design
|
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.