ClusterDistances | R Documentation |
Computes intra-cluster distances which are the distance in-between each cluster.
ClusterDistances(FullDistanceMatrix, Cls,
Names, PlotIt = FALSE)
ClusterIntraDistances(FullDistanceMatrix, Cls,
Names, PlotIt = FALSE)
FullDistanceMatrix |
[1:n,1:n] symmetric distance matrix |
Cls |
[1:n] numerical vector of k classes |
Names |
Optional [1:k] character vector naming k classes |
PlotIt |
Optional, Plots if TRUE |
Cluster distances are given back as a matrix, one column per cluster and the vector of the full distance matrix without the diagonal elements and the upper half of the symmetric matrix. Details and definitons can be found in [Thrun, 2021].
Matrix [1:m,1:(k+1)] of k clusters, each columns consists of the distances in a cluster, filled up with NaN at the end to be of the same length as the vector of the upper triangle of the complete distance matrix.
Michael Thrun
[Thrun, 2021] Thrun, M. C.: The Exploitation of Distance Distributions for Clustering, International Journal of Computational Intelligence and Applications, Vol. 20(3), pp. 2150016, DOI: \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1142/S1469026821500164")}, 2021.
MDplot
ClusterInterDistances
data(Hepta)
Distance=as.matrix(dist(Hepta$Data))
interdists=ClusterDistances(Distance,Hepta$Cls)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.