Description Usage Arguments Value Examples
FindCluster
selects the objects belonging to a cluster after the
results of the methods have been rearranged by the
ReorderToReference
.
1 2 |
List |
A list of the clustering outputs to be compared. The first
element of the list will be used as the reference in
|
nrclusters |
The number of clusters to cut the dendrogram in. Default is NULL. |
select |
The row (the method) and the number of the cluster to select. Default is c(1,1). |
fusionsLog |
Logical. To be handed to |
weightclust |
Logical. To be handed to |
names |
Optional. Names of the methods. Default is NULL. |
A character vector containing the names of the objects in the selected cluster.
1 2 3 4 5 6 7 8 9 10 11 12 13 | data(fingerprintMat)
data(targetMat)
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=FindCluster(List=L,nrclusters=7,select=c(1,4))
Comps
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.