nbOccInComp | R Documentation |
For each feature/gene, this function returns the components they contribute to and their projection values across all the components.
nbOccInComp(icaSet, params, selectionByComp = NULL,
level = c("features", "genes"), file = NULL)
icaSet |
An object of class |
params |
An object of class
|
selectionByComp |
The list of components already restricted to the contributing genes |
level |
The attribute of |
file |
The file where the output data.frame and plots are written. |
A feature/gene is considered as a contributor when its
scaled projection value exceeds the threshold
selCutoff(icaSet)
.
This function plots the number of times the feature/gene is a contributor as a function of the standard deviation of its expression profile.
The created files are located in genePath(params)
.
An extensiom '.htm' and '.pdf' is respectively added to
the file
name for the data.frame and the plot
outputs.
Returns a data.frame whose columns are: 'gene' the feature or gene ID, 'nbOcc' the number of components on which the gene contributes according to the threshold, 'components' the indices of these components, and then the component indices which contain its projection values.
Anne Biton
data(icaSetCarbayo)
params <- buildMineICAParams(resPath="carbayo/")
nbOcc <- nbOccInComp(icaSet=icaSetCarbayo, params=params, level="genes", file="gene2MixingMatrix")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.