Description Format References Examples
These data are from two experiments to examine the effect of
formulation changes on the adhesive properties of a eye glass
lens coating. If the coating would not adhere to the lens
surface then the formulation would not be marketable. The first
experiment (adhesion) considered only pH (i.e., one
factor). In this experiemnt three formulations were made (one
at each of three pH levles) and ten samples from each
formulation were tested. The test procedure for measuring
adhesion is known to contain a large amount of test error. In
the second experiment ( adhesion2 the effect of pH (3
levels) and a catalyst (2 levels) were tested. The data
consists of five samples were taken from and tested from each of
the six formulations.
adhesion is a data frame with 30 observations on the
following 2 variables.
adhesiona numeric vector
pHa numeric vector at three distinct levels
adhesion2 is a data frame with 30 observations on the following
3 variables.
cata factor with levels A and B
pHa numeric vector
adhesiona numeric vector
Peter R. Nelson, Marie Coffin and Karen A. F. Copeland (2003), Introductory Statistics for Engineering Experimentation, Elsevier. (Appendix A)
1 2 3 4 5 6 7 8 9 10 11 12 13 | str(adhesion)
xtabs(~ pH, adhesion)
xyplot(adhesion ~ pH, adhesion,
ylab = "Adhesion of a lens coating", xlab = "pH",
type = c("g", "p", "a"))
dotplot(as.factor(pH) ~ adhesion, adhesion, ylab = "pH",
type = c("p","a"), xlab = "Adhesion of a lens coating")
str(adhesion2)
xtabs(~ cat + pH, adhesion2)
dotplot(as.factor(pH) ~ adhesion, adhesion2, groups = cat,
type = c("p","a"), ylab = "pH",
auto.key = list(space = "right", lines = TRUE,
title = "Catalyst"))
|
Loading required package: lattice
'data.frame': 30 obs. of 2 variables:
$ adhesion: num 15.2 15.7 15.9 14.3 15.8 ...
$ pH : num 4.3 5.3 6.3 4.3 5.3 6.3 4.3 5.3 6.3 4.3 ...
pH
4.3 5.3 6.3
10 10 10
'data.frame': 30 obs. of 3 variables:
$ cat : Factor w/ 2 levels "A","B": 1 1 1 1 1 2 2 2 2 2 ...
$ pH : num 4.3 4.3 4.3 4.3 4.3 4.3 4.3 4.3 4.3 4.3 ...
$ adhesion: num 13.2 13.6 13.8 14.2 14.3 ...
pH
cat 4.3 5.3 6.3
A 5 5 5
B 5 5 5
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.