Analysing a 2tok factorial experiment

Testing significance of effects in a 2k factorial experiment

  1. Given the average values (y1, y2, ...) and sample standard deviations (S1, S2, ...) among the replicates at each combination of test conditions. (There will be 2k combinations in a full factorial experiment with k variables, each at 2 levels. Each combination has r replications, and hence each standard deviation has r-1 degrees of freedom.)
  2. Calculate the effects using Yates algorithm
  3. Calculate the pooled variance Sp2 = (S12 + S22 + ...)/2k (this is just the weighted average)
  4. Calculate the standard error of an effect SE = 2Sp/sqrt(r*2k) (since half the factorial points are at the high level and half at the low level)
  5. Calculate the signal-to-noise ratios for each effect tE = Effect/SE
  6. Calculate the total degrees of freedom = (r-1)*2k which is the sum of the degrees of freedom for the individual variances. Look up tcrit from tables for the chosen level of significance and the total degrees of freedom of the pooled variance.
  7. Compare with critical value tcrit to test for significance. If tE is less than tcrit, then we cannot reject the null hypothesis that there is no effect.

Example:

Data
Standard Order A B C First replicate (Run Order) Second replicate (Run Order) Average Variance Degrees of freedom
1 -1 -1 -1 705 (3) 680 (10) 692.5 312.5 1
2 +1 -1 -1 620 (5) 651 (7) 635.5 480.5 1
3 -1 +1 -1 700 (4) 685 (9) 692.5 112.5 1
4 +1 +1 -1 629 (6) 635 (13) 632.0 18.0 1
5 -1 -1 +1 672 (15) 654 (16) 663.0 162.0 1
6 +1 -1 +1 668 (2) 691 (12) 679.5 264.5 1
7 -1 +1 +1 715 (8) 672 (14) 693.5 924.5 1
8 +1 +1 +1 647 (1) 673 (11) 660.0 338.0 1

  1. The pooled variance Sp2 = (312.5 + 480.5 + ... +338.0)/8 = 326.6
  2. The standard error of an effect SE = 2*18.07/sqrt(16) = 9.036
Results
Variable Effect Signal to noise ratio
Constant 668.6
A -33.63 -3.721
B 1.875 0.208
AB -13.38 -1.48
C 10.88 1.204
AC 25.13 2.781
BC 3.625 0.401
ABC -11.63 -1.287

tcrit = t0.025,8 = 2.306

Comparing, we find that A and AC interaction are significant

Reference:

Lawson, John and Erjavec, John, "Modern Statistics for Engineering and Quality Improvement", Thomson - Duxbury, 2001. pp.217-220


HOME  |  LEVEL ABOVE

Hosted by www.Geocities.ws

1