drill.advance | R Documentation |
A single replicate 2 x 2 x 2 experiment to study the effects of four treatment factors on the rate of advance of a small stone drill. (Chapter 7, Table 7.4)
drill.advance
A data frame with 16 rows and 6 variables:
load on the drill
flow rate through the drill
speed of rotation
type of mud used in drilling
measure of drill advance
log to base 10 of drill advance
http://www.wright.edu/~dan.voss/bookdata/data.html
Dean, A. and Voss, D. (1999). Design and Analysis of Experiments. New York, Springer.
apply(drill.advance[,1:4],2,table) # each factor observed at 2 levels
aov1 <- aov(LN_ADV ~ A + B + C + D, data=drill.advance)
summary(aov1)
coef(aov1)
op <- par(mfrow=c(2,2))
for(i in LETTERS[1:4]){
plot(TukeyHSD(aov1, i))
}
par(op)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.