xmp10.01 {Devore5} | R Documentation |
The xmp10.01
data frame has 24 rows and 2 columns.
This data frame contains the following columns:
A
B
C
D
Devore, J. L. (2000) Probability and Statistics for Engineering and the Sciences (5th ed), Duxbury
data(xmp10.01) boxplot(strength ~ type, data = xmp10.01, main = "Data from Example (compare Figure 10.1, p. 405)") fm1 <- lm( strength ~ type, data = xmp10.01 ) # fit anova model qqnorm(resid(fm1), main = "Compare to Figure 10.2, p. 407") anova(fm1) # compare results in Example 10.2, p. 409