SOTAclustering | R Documentation |
Self-organizing Tree Algorithm (SOTA) introduced by [Herrero et al., 2001].
SOTAclustering(Data, ClusterNo,PlotIt=FALSE,UnrestGrowth,...)
Data |
[1:n,1:d] matrix of dataset to be clustered. It consists of n cases of d-dimensional data points. Every case has d attributes, variables or features. |
ClusterNo |
A number k which defines k different clusters to be built by the algorithm. |
PlotIt |
Default: FALSE, if TRUE plots the first three dimensions of the dataset with colored three-dimensional data points defined by the clustering stored in |
UnrestGrowth |
TRUE: forces the |
... |
Further arguments to be set for the clustering algorithm, if not set, default arguments are used. |
List of
Cls |
[1:n] numerical vector with n numbers defining the classification as the main output of the clustering algorithm. It has k unique numbers representing the arbitrary labels of the clustering. |
sotaObject |
Object defined by clustering algorithm as the other output of this algorithm |
*Luis Winckelman intergrated several function from clValid because it's ORPHANED.
Luis Winckelmann*, Vasyl Pihur, Guy Brock, Susmita Datta, Somnath Datta
[Herrero et al., 2001] Herrero, J., Valencia, A., & Dopazo, J.: A hierarchical unsupervised growing neural network for clustering gene expression patterns, Bioinformatics, Vol. 17(2), pp. 126-136. 2001.
#Does Work
data('Hepta')
out=SOTAclustering(Hepta$Data,ClusterNo=7)
table(Hepta$Cls,out$Cls)
#Does not work well
data('Lsun3D')
out=SOTAclustering(Lsun3D$Data,ClusterNo=100,PlotIt=FALSE,UnrestGrowth=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.