powered by
Data from a 4x4 Latin square experiment on the efficiency of a field concrete mixer.
data(field.concrete)
A data frame with 16 observations on the following 4 variables.
a numeric vector
a factor with levels 4, 8, 12, 16 mph.
order in which runs were performed each day
day on which runs were performed
Davison, A. C. (2003) Statistical Models. Cambridge University Press. Page 435.
data(field.concrete) fit <- lm(efficiency~run+day+speed,data=field.concrete) anova(fit) summary(fit) fit <- lm(efficiency~run+day+poly(as.numeric(speed),3),data=field.concrete) summary(fit)
Run the code above in your browser using DataLab