metaGE.cor | R Documentation |
This function infer the inter-environment correlation matrix from the z-scores after filtering markers with high probability of being under H1.
metaGE.cor(Data, Threshold = 0.6, NA.omit = TRUE, Cores = NULL)
Data |
A dataset containing the effects and pvalues of each marker (in rows) in each environment (in columns) as obtained by |
Threshold |
Threshold on posteriors (to be H1) to filter markers before computing correlation ( |
NA.omit |
A boolean: should the NA be removed for the inter-environment correlation matrix computation ( |
Cores |
The number of cores to used, optional. By default, |
The inter-environment correlation matrix
require(corrplot)
data("metaData")
Threshold <- 0.8
matCorr <- metaGE.cor(metaData, Threshold = Threshold)
corrplot(matCorr,order = "hclust")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.