dendrogram {dbscan} | R Documentation |
Coersions to Dendrogram
Description
Provides a new generic function to coerce objects to dendrograms with
stats::as.dendrogram()
as the default. Additional methods for
hclust, hdbscan and reachability objects are provided.
Usage
as.dendrogram(object, ...)
## Default S3 method:
as.dendrogram(object, ...)
## S3 method for class 'hclust'
as.dendrogram(object, ...)
## S3 method for class 'hdbscan'
as.dendrogram(object, ...)
## S3 method for class 'reachability'
as.dendrogram(object, ...)
Arguments
object |
the object |
... |
further arguments |
Details
Coersion methods for hclust, hdbscan and reachability objects to dendrogram are provided.
The coercion from hclust
is a faster C++ reimplementation of the coercion in
package stats
. The original implementation can be called
using stats::as.dendrogram()
.
The coersion from hdbscan builds the non-simplified HDBSCAN hierarchy as a dendrogram object.
[Package dbscan version 1.2-0 Index]