Description Usage Arguments Value Author(s) Examples
List of 'S' (or 'S' and 'A') signatures for each classifier
1 2 3 4 | getSignatureLs(object, tierC = c("S", "AS")[1], ...)
## S4 method for signature 'biosign'
getSignatureLs(object, tierC = c("S", "AS")[1])
|
object |
An S4 object of class |
tierC |
Character: defines whether signatures from the 'S' tier only (default) or the ('S' and 'A') tiers should be returned |
... |
Currently not used. |
List of 'S' (or 'S' and 'A') signatures for each classifier
Philippe Rinaudo and Etienne Thevenot (CEA)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | ## loading the diaplasma dataset
data(diaplasma)
attach(diaplasma)
## restricting to a smaller dataset for this example
featureSelVl <- variableMetadata[, "mzmed"] >= 490 & variableMetadata[, "mzmed"] < 500
dataMatrix <- dataMatrix[, featureSelVl]
variableMetadata <- variableMetadata[featureSelVl, ]
## signature selection for all 3 classifiers
## a bootI = 5 number of bootstraps is used for this example
## we recommend to keep the default bootI = 50 value for your analyzes
set.seed(123)
diaSign <- biosign(dataMatrix, sampleMetadata[, "type"], bootI = 5)
## individual boxplot of the selected signatures
getSignatureLs(diaSign)
detach(diaplasma)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.