Description Usage Arguments Details Examples
Making a multiple-factor ANOVA from the single channel variable of an iTRAQ experiment.
1 | factoring(dwide, cvmat)
|
dwide |
iTRAQ data in wide format including columns corresponding to iTRAQ channels containing their intensities. |
cvmat |
a matrix that hold the information on which channel is mapped to which factor. |
This function uses a matrix convmat to convert the single channel into a full fledged multiple factor ANOVA.
1 2 3 4 5 6 | channels <- c("X113", "X114", "X115", "X116", "X117", "X118", "X119") #, "X121")
typus <- c(rep(c("A", "B", "C"), each=2), "reference")
treatment <- c(rep(c("I", "II"), 3), "mixed")
convmat <- data.frame(channels=channels, typus=typus, treatment=treatment)
print(convmat)
## Not run: factoring(dwide, cvmat=convmat)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.