Construction of Design
proc factex;
factors C B A D;
size fraction=2; for 2-2 fraction use 4
model res=4;
examine confounding aliasing(3);
output out=part1;
run;
data part2;
input rate @@;
datalines;
45 100 45 65 75 60 80 96
;
data filter;
merge part1 part2;
run;
|
Analysis of this Design.
proc glm data=filter;
class A B C D;
model rate=A|B|C|D@2 /ss1;
estimate 'L(a)' A -1 1;
estimate 'L(b)' B -1 1;
estimate 'L(c)' C -1 1;
estimate 'L(d)' D -1 1;
run;
An atlernate method for analysis.
%adxgen
%adxff
%adxinit
%adxffa(filter,rate,C B A D,4);
This gives the estimates as half of the
value of L(a) shown in the previous code.
|