Eggs {BSDA} | R Documentation |
Data for Exercise 9.22
Eggs
A data frame with 12 observations on the following 7 variables.
feed
eggs
SRES1
FITS1
c1sq
SRES2
FITS2
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Duxbury
str(Eggs) attach(Eggs) plot(feed,eggs) model <- lm(eggs~feed) abline(model) summary(model) detach(Eggs) remove(model)