pipeline | R Documentation |
The Alaska pipeline data consists of in-field ultrasonic measurements of defects depths in the Alaska pipeline. The depth of the defects was measured again in the laboratory. These measurements were performed in six batches. The data were analyzed to calibrate the bias of field measurements relative to laboratory measurements. In this analysis, the field measurement is the response variable and the laboratory measurement is the predictor variable.
data(pipeline)
A data frame with 107 rows and 2 variables:
a numeric vector indicating the number of defects measured in the field.
a numeric vector indicating the number of defects measured in the laboratory.
https://www.itl.nist.gov/div898/handbook/pmd/section6/pmd621.htm
Weisberg S. (2005). Applied Linear Regression, 3rd edition. Wiley, New York.
data(pipeline)
dev.new()
xlab <- "In-laboratory measurements"
ylab <- "In-field measurements"
with(pipeline,plot(Lab,Field,pch=20,xlab=xlab,ylab=ylab))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.