table.b11 {MPV} | R Documentation |
The table.b11
data frame has 38 observations on the
quality of Pinot Noir wine.
data(table.b11)
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.
data(table.b11) attach(table.b11) Quality.lm <- lm(Quality ~ Clarity + Aroma + Body + Flavor + Oakiness + factor(Region)) summary(Quality.lm) detach(table.b11)