Description Usage Arguments Value Examples
Method to subset (or sort) factors.
Some factors might not be interesting for the downstream analysis and the user can choose to remove them.
This has no effect on the values of the other factors.
For example, this could be done if the model contains factors
which are inactive in all views.
1 | subsetFactors(object, factors)
|
object |
a |
factors |
character vector with the factor names (LF1,LF2,...), or numeric vector with the index of the factors. |
MOFAmodel
object with a subset of factors
1 2 3 4 5 6 7 | # Using an existing trained model on the CLL data
filepath <- system.file("extdata", "CLL_model.hdf5", package = "MOFAdata")
MOFA_CLL <- loadModel(filepath)
MOFA_CLL_small <- subsetFactors(MOFA_CLL, factors=c(1,2,3))
MOFA_CLL_small
MOFA_CLL_small <- subsetFactors(MOFA_CLL, factors=c("LF1","LF2","LF3"))
MOFA_CLL_small
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.