nbOccByGeneInComp | R Documentation |
For each feature/gene, this function returns the indices of the components they contribute to.
nbOccByGeneInComp(Slist, cutoff, sel)
Slist |
A list whose each element contains projection values of features/genes on a component. |
cutoff |
A threshold to be used to define a gene as contributor |
sel |
A list whose each element contains projection values of
contributing features/genes on a component (the difference with arg
|
This function returns a list which gives for each feature/gene the indices of the components it contributes to.
Anne Biton
c1 <- rnorm(100); names(c1) <- paste("g",100:199,sep="")
c2 <- rnorm(100); names(c2) <- paste("g",1:99,sep="")
MineICA:::nbOccByGeneInComp(Slist=list(c1,c2), cutoff= 0.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.