plot_factor_cor | R Documentation |
Function to plot the correlation matrix between the latent factors.
plot_factor_cor(object, method = "pearson", ...)
object |
a trained |
method |
a character indicating the type of correlation coefficient to be computed: pearson (default), kendall, or spearman. |
... |
arguments passed to |
This method plots the correlation matrix between the latent factors.
The model encourages the factors to be uncorrelated, so this function usually yields a diagonal correlation matrix.
However, it is not a hard constraint such as in Principal Component Analysis and correlations between factors can occur,
particularly with large number factors.
Generally, correlated factors are redundant and should be avoided, as they make interpretation harder. Therefore,
if you have too many correlated factors we suggest you try reducing the number of factors.
Returns a symmetric matrix with the correlation coefficient between every pair of factors.
# Using an existing trained model on simulated data
file <- system.file("extdata", "model.hdf5", package = "MOFA2")
model <- load_model(file)
# Plot correlation between all factors
plot_factor_cor(model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.