Description Usage Arguments Value Examples
View source: R/biological_integration.R
Plot a heatmap of the correlation between all modules and the phenotypic variables and the p value associated
1 | plot_modules_phenotype(modules_phenotype, pvalue_th = 0.05, ...)
|
modules_phenotype |
list, data.frames of correlation and pvalue associated |
pvalue_th |
float, threshold in ]0;1[ under which module will be considered as significantly associated |
... |
any other parameter you can provide to ggplot2::theme |
A ggplot object representing a heatmap with phenotype association and related pvalues
1 2 3 4 5 6 7 8 9 | eigengene_mat <- data.frame(mod1 = rnorm(20, 0.1, 0.2),
mod2 = rnorm(20, 0.2, 0.2))
phenotype_mat <- data.frame(phenA = sample(c("X", "Y", "Z"), 20,
replace = TRUE),
phenB = sample(c("U", "V"), 20,
replace = TRUE),
stringsAsFactors = FALSE)
association <- associate_phenotype(eigengene_mat, phenotype_mat)
plot_modules_phenotype(association)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.