p2.15 {MPV} | R Documentation |
The p2.15
data frame has 8 observations on the impact
of temperature on the viscosity of toluene-tetralin blends.
This particular data set deals with blends with a 0.4 molar
fraction of toluene.
data(p2.15)
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(p2.15) attach(p2.15) plot(visc ~ temp, pch=16) visc.lm <- lm(visc ~ temp) plot(visc.lm, which=1) detach(p2.15)