createES | R Documentation |
createES
function produces an ExpressionSet object from given data,
and exports it to global scope.
createES(data, pData, varLabels, fData, fvarLabels, eData)
data |
Gene expression matrix. |
pData |
Matrix with phenotypical data. |
varLabels |
Names of phenoData columns. |
fData |
Matrix with feature data. |
fvarLabels |
Names of featureData columns. |
eData |
List with experimentData |
produced ExpressionSet object
## Not run:
data <- matrix(1:15, 5, 3)
pData <- c("A", "B", "C")
varLabels <- "cat"
fData <- c("p", "r", "s", "t", "u")
fvarLabels <- "id"
eData <- list(name="", lab="", contact="", title="", url="", other=list(), pubMedIds="")
createES(data, pData, varLabels, fData, fvarLabels, eData)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.