getCluster.details {LearnClust} | R Documentation |
To explain how to get the clusters with the minimal distance value. By using the given distance
,
it gets the matrix index.
getCluster.details(distance, matrix)
distance |
is a number. It should be in the matrix. |
matrix |
is a numeric matrix. |
This function is part of the hierarchical clusterization method. The function uses the
distance
value and gets the clustersId with the minimal distance.
For the divisive algorithm, it chooses the distances from a distances list.
Numeric vector with two clusters indexs.
Roberto Alcántara roberto.alcantara@edu.uah.es
Juan José Cuadrado jjcg@uah.es
Universidad de Alcalá de Henares
matrixExample <- matrix(c(1:10), ncol=2)
getCluster.details(2,matrixExample)