p7.17 {MPV} | R Documentation |
Data Set for Problem 7-17
Description
The p7.17
data frame has 6 observations
on vapor pressure of water at various temperatures. This
data set is the same as p7.15
which was used
for exercise 7-15 in the third edition of MPV.
Usage
data(p7.17)
Format
This data frame contains the following columns:
- y
vapor pressure (mm Hg)
- x
temperature (degrees Celsius)
Source
Montgomery, D.C., Peck, E.A., and Vining, C.G. (2021) Introduction to Linear Regression Analysis. 6th Edition, John Wiley and Sons.
Examples
y.lm <- lm(y ~ x, data=p7.17)
plot(y ~ x, data=p7.17)
abline(coef(y.lm))
plot(y.lm, which=1)
[Package MPV version 1.63 Index]