Skip to content
Prev 318874 / 398502 Next

Understanding lm-based analysis of fractional factorial experiments

On Mar 6, 2013, at 4:46 AM, Kjetil Kjernsmo <kjekje at ifi.uio.no> wrote:

            
I'll ignore the rest of your question, in the hope that this will answer them sufficiently.

You probably want a simple linear model, specified in R using "+" instead of "*".
Call:
lm(formula = yavg ~ B + C + D + E + Q, data = leaf)

Coefficients:
(Intercept)           B+           C+           D+           E+           Q+  
    7.50084      0.22125      0.17625      0.02875      0.10375     -0.25960  

Does this give you the numbers you expect?

Peter