| Line 1... |
Line -... |
| 1 |
### $Id: Puromycin.R,v 1.1 2003/12/11 07:16:04 ripley Exp $
|
- |
|
| 2 |
### Reaction rate versus concentration for samples treated with
|
1 |
### Reaction rate versus concentration for samples treated with
|
| 3 |
### Puromycin or untreated. Bates and Watts (1988), Appendix A1.3
|
2 |
### Puromycin or untreated. Bates and Watts (1988), Appendix A1.3
|
| 4 |
"Puromycin" <-
|
3 |
"Puromycin" <-
|
| 5 |
structure(list(
|
4 |
structure(list(
|
| 6 |
conc = c(0.02, 0.02, 0.06, 0.06, 0.11, 0.11, 0.22, 0.22, 0.56,
|
5 |
conc = c(0.02, 0.02, 0.06, 0.06, 0.11, 0.11, 0.22, 0.22, 0.56,
|
| 7 |
0.56, 1.1, 1.1, 0.02, 0.02, 0.06, 0.06, 0.11, 0.11, 0.22, 0.22,
|
6 |
0.56, 1.1, 1.1, 0.02, 0.02, 0.06, 0.06, 0.11, 0.11, 0.22, 0.22,
|
| 8 |
0.56, 0.56, 1.1),
|
7 |
0.56, 0.56, 1.1),
|
| 9 |
vel = c(76, 47, 97, 107, 123, 139, 159, 152, 191, 201, 207, 200,
|
8 |
vel = c(76, 47, 97, 107, 123, 139, 159, 152, 191, 201, 207, 200,
|
| 10 |
67, 51, 84, 86, 98, 115, 131, 124, 144, 158, 160),
|
9 |
67, 51, 84, 86, 98, 115, 131, 124, 144, 158, 160),
|
| 11 |
state = structure(c(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2,
|
10 |
state = factor(c(1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L,
|
| 12 |
2, 2, 2, 2, 2, 2, 2, 2),
|
11 |
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L), levels = 1:2,
|
| 13 |
.Label = c("treated", "untreated"), class = "factor")),
|
12 |
labels = c("treated", "untreated"))),
|
| 14 |
.Names = c("conc", "rate", "state"),
|
13 |
names = c("conc", "rate", "state"),
|
| 15 |
row.names = 1:23,
|
14 |
row.names = 1:23,
|
| 16 |
class = "data.frame",
|
15 |
class = "data.frame",
|
| 17 |
reference = "A1.3, p. 269")
|
16 |
reference = "A1.3, p. 269")
|