Description Usage Arguments Value Author(s) References See Also Examples
Classify using the Lasso
1 | lassoClass(object, groups)
|
object |
object containing the expression measurements; currently the only method supported is one for ExpressionSet objects |
groups |
character string indicating the column containing the class membership |
object of class glmnet
Willem Talloen
Goehlmann, H. and W. Talloen (2009). Gene Expression Studies Using Affymetrix Microarrays, Chapman \& Hall/CRC, pp. 183, 205 and 212.
1 2 3 4 5 6 7 8 9 10 11 | if (require(ALL)){
data(ALL, package = "ALL")
ALL <- addGeneInfo(ALL)
ALL$BTtype <- as.factor(substr(ALL$BT,0,1))
resultLasso <- lassoClass(object = ALL, groups = "BTtype")
plot(resultLasso, label = TRUE,
main = "Lasso coefficients in relation to degree of
penalization.")
topTable(resultLasso, n = 15)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.