s.cluster.h {ldt} | R Documentation |
Hierarchical Clustering
Description
This function performs hierarchical clustering on a group of variables, given their distances from each other.
Usage
s.cluster.h(distances, linkage = "single")
Arguments
distances |
Lower triangle of a symmetric distance matrix (without the diagonal).
This can be the output of |
linkage |
Character string specifying the method for calculating the distance in a left-right node merge.
It can be |
Details
The main purpose of exporting this statistics helper method is to show the inner calculations of the package.
Value
A list with the following items:
merge |
An integer matrix representing the merge matrix. |
height |
A numeric vector representing the heights. |
order |
An integer vector representing the orders. |
Examples
n <- 10
data <- data.frame(x = rnorm(n), y = rnorm(n), z = rnorm(n))
distances <- s.distance(data)
clusters <- s.cluster.h(distances)
[Package ldt version 0.5.3 Index]