Description Usage Arguments Value Examples
The SharedComps
function is an easy way to select the objects that
are shared over clusters of different methods.
1 2 |
List |
A list of clustering outputs or the output of the
|
nrclusters |
If List is the output several clustering methods, it has to be provided in how many clusters to cut the dendrograms in. Default is NULL. |
fusionsLog |
Logical. To be handed to |
weightclust |
Logical. To be handed to |
names |
Names of the methods or clusters. Default is NULL. |
A vector containing the shared objects of all listed elements.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | data(fingerprintMat)
data(targetMat)
data(geneMat)
data(GeneInfo)
MCF7_F = Cluster(fingerprintMat,type="data",distmeasure="tanimoto",normalize=FALSE,
method=NULL,clust="agnes",linkage="flexible",gap=FALSE,maxK=55,StopRange=FALSE)
MCF7_T = Cluster(targetMat,type="data",distmeasure="tanimoto",normalize=FALSE,
method=NULL,clust="agnes",linkage="flexible",gap=FALSE,maxK=55,StopRange=FALSE)
L=list(MCF7_F,MCF7_T)
names=c('FP','TP')
Comps=SharedComps(List=L,nrclusters=7,fusionsLog=FALSE,weightclust=FALSE,names=names)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.