table.b7 {MPV} | R Documentation |
The table.b7
data frame has 16 observations on
oil extraction from peanuts.
data(table.b7)
This data frame contains the following columns:
Montgomery, D.C., Peck, E.A., and Vining, C.G. (2001) Introduction to Linear Regression Analysis. 3rd Edition, John Wiley and Sons.
Kilgo, M.B. An Application of Fractional Experimental Designs. Quality Engineering, 1, 19-23.
data(table.b7) attach(table.b7) # partial solution to Problem 3.11: peanuts.lm <- lm(y ~ x1 + x2 + x3 + x4 + x5) summary(peanuts.lm) detach(table.b7)