| TIREWEAR {PASWR2} | R Documentation |
Tire Wear
Description
The data frame TIREWEAR contains measurements for the amount of tread loss in thousandths of an inch after 10,000 miles of driving.
Usage
TIREWEAR
Format
A data frame with 16 observations on the following 3 variables:
-
wear(tread loss measured in thousandths of an inch) -
treat(a factor with levelsA,B,C, andD) -
block(a factor with levelsCar1,Car2,Car3, andCar4)
References
Ugarte, M. D., Militino, A. F., and Arnholt, A. T. 2015. Probability and Statistics with R, Second Edition. Chapman & Hall / CRC.
Examples
par(mfrow=c(1, 2), cex = 0.8)
with(data = TIREWEAR,
interaction.plot(treat, block, wear, type = "b", legend = FALSE))
with(data = TIREWEAR,
interaction.plot(block, treat, wear, type = "b", legend = FALSE))
par(mfrow=c(1, 1), cex = 1)
[Package PASWR2 version 1.0.5 Index]