Description Usage Arguments Details Value Author(s) Examples
View source: R/toListDivisive.R
To transform data
into list.
1 |
data |
could be a numeric vector, a matrix or a numeric data frame. |
This function is part of the divisive hierarchical clusterization method. The function initializes
data
content as a list.
a list with clusters.
Roberto Alcántara roberto.alcantara@edu.uah.es
Juan José Cuadrado jjcg@uah.es
Universidad de Alcalá de Henares
1 2 3 4 5 6 7 8 9 10 11 | data <- c(1:10)
matrix <- matrix(data,ncol=2)
dataFrame <- data.frame(matrix)
toListDivisive(data)
toListDivisive(matrix)
toListDivisive(dataFrame)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.