expMST | R Documentation |
Construct a tree that links all features together such that the likelihood of obtaining any of the linking correlations from the null distribution is minimized. Produce clusters from cutting this tree at links above a certain p-value threshold.
expMST(gm, cutoff = 0.05, min.size = 3)
gm |
the output of the |
cutoff |
the threshold p-value beyond which links will be severed. |
min.size |
minimum cluster size to be output. |
a numeric vector of cluster labels. 0
indicates
"unclustered"
Anooj Arkatkar
data(foldChange) data(traitData) gm <- gelMatrix(foldChange, traitData, squared=TRUE, output="orig") # Total number of links in the MST for Bonferroni correction N <- dim(gm)[1]-1 clust <- expMST(gm, cutoff=0.05/N) table(clust)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.