toList.details {LearnClust} | R Documentation |
To explain how to transform data
into list.
toList.details(data)
data |
could be a numeric vector, a matrix or a numeric data frame. |
This function is part of the agglomerative hierarchical clusterization method. The function initializes
data
content as a list.
In agglomerative algorithm, it adds a TRUE
flag to each element, which indicates that the cluster is not grouped.
A list with cñlusters. Explanation.
Roberto Alcántara roberto.alcantara@edu.uah.es
Juan José Cuadrado jjcg@uah.es
Universidad de Alcalá de Henares
data <- c(1:10)
matrix <- matrix(data,ncol=2)
dataFrame <- data.frame(matrix)
toList(data)
toList(matrix)
toList(dataFrame)