Chapter Contents |
Previous |
Next |
Macros for the Design and Analysis of Experiments |
ds | is the name of the SAS data set to contain the constructed design. This data set contains variables for design factors. Default names are used. The default names for design factors are T1, T2, T3, and so on. |
vlst | is a list of mixture components and their constraints.
Separate information for different components with a
slash (/)
and specify each component as follows:
name loval-hival where name gives the name of the component, loval
gives the low value for the component, and hival
gives the high value for the component. If you omit
loval or hival, the defaults are 0 and 1,
respectively. |
Use the ADXMAMD macro when your mixture factors are subject to constraints of the form
For example, consider an experiment to study the effects of a lubricant additive on three-component lubricant blends. The additive and the three components are subject to restrictions as follows:
Mixture Component | Range of Values |
Additive (ADD) | 7% to 18% |
Component A (A) | 0% to 30% |
Component B (B) | 37% to 70% |
Component C (C) | 0% to 15% |
To construct the McLean-Anderson design and output it to the data set LUB, submit the following statements:
%adxgen %adxmix %adxinit %adxmamd(lub,add .07-.18 /a -.3 /b .37-.7 /c -.15)In the statements above, the low values for lubricant components A and C are omitted; since these low values are 0, you can use the defaults.
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.