Learn R Programming

BSDA (version 1.2.2)

Hardwood: Tensile strength of Kraft paper for different percentages of hardwood in the batches of pulp

Description

Data for Example 2.18 and Exercise 9.34

Usage

Hardwood

Arguments

Format

A data frame/tibble with 19 observations on two variables

tensile

tensile strength of kraft paper (in pounds per square inch)

hardwood

percent of hardwood in the batch of pulp that was used to produce the paper

References

Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Pacific Grove, CA: Brooks/Cole, a division of Thomson Learning.

Examples

Run this code

plot(tensile ~ hardwood, data = Hardwood)
model <- lm(tensile ~ hardwood, data = Hardwood)
abline(model, col = "red")
plot(model, which = 1)


Run the code above in your browser using DataLab