getClusterDivisive {LearnClust}R Documentation

To get the clusters with maximal distance.

Description

To get the clusters with the maximal distance value. By using the given distance, it gets the matrix index.

Usage

getClusterDivisive(distance, vector)

Arguments

distance

is a number. It should be in the matrix.

vector

is a numeric vector

Details

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.

Value

A cluster.

Author(s)

Roberto Alcántara roberto.alcantara@edu.uah.es

Juan José Cuadrado jjcg@uah.es

Universidad de Alcalá de Henares

Examples


getClusterDivisive(2,c(1:10))

getClusterDivisive(6,c(2,4,6,8,10,12))


[Package LearnClust version 1.1 Index]