Iqgpa {BSDA} | R Documentation |
Data for Exercises 9.51 and 9.52
Iqgpa
A data frame with 12 observations on the following 2 variables.
IQ
GPA
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Duxbury
str(Iqgpa) attach(Iqgpa) plot(IQ,GPA) model <- lm(GPA~IQ) abline(model) summary(model) detach(Iqgpa) remove(model)