STAT210prob3.20 | R Documentation |
This data is from an experiment which was run to determine whether four specific firing temperatures affect the density of a certain type of brick. The firing temperatures used in the experiment are 100, 125, 150 and 175.
STAT210prob3.20
A data frame with 18 observations (rows) and 3 variables (columns).
Column name | Data type | Description | Values | |
[,1] | Temp | integer | The firing temperature | (100 - 175) |
[,2] | Density | numeric | Measured density of the brick | (21.4 - 21.9) |
[,3] | RESI1 | numeric | Residuals | (-0.3 - 0.2) |
This is data from Exercise 3.20 in Design and Analysis of Experiments, 9th Edition, EMEA Edition.
Montgomery, D. C. (2019) Design and Analysis of Experiments, 9th Edition, EMEA Edition. New York: Wiley.
# A short summary of the variables
summary(STAT210prob3.20)
# Get the residuals
STAT210prob3.20$Temp <- as.factor(STAT210prob3.20$Temp)
res <- aov(Density ~ Temp, data = STAT210prob3.20)
res$residuals
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.