Description
The table.b11 data frame has 38 observations on the
quality of Pinot Noir wine.
Format
This data frame contains the following columns:
- Clarity
- a numeric vector
- Aroma
- a numeric vector
- Body
- a numeric vector
- Flavor
- a numeric vector
- Oakiness
- a numeric vector
- Quality
- a numeric vector
- Region
- a numeric vector
Source
Montgomery, D.C., Peck, E.A., and Vining, C.G. (2001)
Introduction to Linear Regression Analysis. 3rd Edition, John Wiley and Sons.Examples
Run this codedata(table.b11)
attach(table.b11)
Quality.lm <- lm(Quality ~ Clarity + Aroma + Body + Flavor + Oakiness +
factor(Region))
summary(Quality.lm)
detach(table.b11)
Run the code above in your browser using DataLab