Description Usage Format Source References Examples
A dataset containing the scores of 2 platforms and 2 labs.
1 | data("data_microarray")
|
The format is: A data frame with 800 rows and 4 variables
the scores of replicate 1
the scores of replicate 2
the factor variabel of platforms
the factor variabel of labs
Irizarry et al. (2005).
Irizarry, R. A., Warren, D., Spencer, F., Kim, I. F., Biswal, S., Frank, B. C., Gabrielson, E., Garcia, J. G., Geoghegan, J., Germino, G., et al. (2005). Multiple-laboratory comparison of microarray platforms. Nature Methods 2, 345-350.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | data(data_microarray)
## Not run:
data(data_microarray)
## with slope without ht
par.ini = c(-1, 1, 0.1, 0.1) # initial value
fit <- ccrFit(cbind(y1,y2)~x1+x2,
data = data_microarray,
link = 'logitlogit',
is.slope = TRUE, is.ht = FALSE,
par.ini = par.ini)
## with slope with ht, including iteractions
par.ini = c(-1, 0.1, 0.1, 0, 1, 0.1, 0.1, 0)
fit <- ccrFit(cbind(y1,y2)~x1*x2,
data = data_microarray,
link = 'logitlogit',
is.slope = TRUE, is.ht = TRUE,
par.ini = par.ini)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.