STAT210prob3.19 | R Documentation |
A regional opera company has tried three approaches to solicit donations from 24 potential sponsors. The sponsors were randomly divided into three groups of eight and one approach was used for each group. This data shows the dollar amounts of the resulting contributions for each of the sponsors.
STAT210prob3.19
A data frame with 24 observations (rows) and 3 variables (columns).
Column name | Data type | Description | Values | |
[,1] | Approach | integer | 3 different approaches | (1, 2, 3) |
[,2] | Contribution | integer | The donation from each sponsor in $ | (900 - 2000) |
[,3] | RESI1 | numeric | Residuals | (-537.5 - 493.75) |
This is data from Exercise 3.19 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.19)
# Get the residuals
STAT210prob3.19$Approach <- as.factor(STAT210prob3.19$Approach)
res <- aov(Contribution ~ Approach, data = STAT210prob3.19)
res$residuals
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.