STAT210example2.1 | R Documentation |
An engineer studied a new formulation of Portland cement mortar for
shorter cure time and tested the effect the new mixture had on the tension
bond strength. In this data set there are a total of 20 samples of bond
strength measurements for modified or unmodified mortar. The bond strength is
given in kgf/cm^2
(kilogram-force per centimetre square).
STAT210example2.1
A tibble with 10 observations (rows) and 2 variables (columns).
Column name | Data type | Description | Values | |
[,1] | Modified | numeric | Bond strength for modified mortar | (16.35 - 17.21) |
[,2] | Unmodified | numeric | Bond strength for unmodified mortar | (16.62 - 17.8) |
This is data from the Portland Cement example (TABLE 2.1) 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.
# Stacked data
PortlandCement <- stack(STAT210example2.1)
names(PortlandCement) <- c('Strength','Modification')
# Linear model
lm(Strength ~ Modification, data = PortlandCement)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.