Learn R Programming

spiralize (version 1.0.6)

spiral_dendrogram: Draw dendrogram

Description

Draw dendrogram

Usage

spiral_dendrogram(dend, gp = gpar(), track_index = current_track_index())

Value

Height of the dendrogram.

Arguments

dend

A stats::dendrogram object.

gp

Graphics parameters of the dendrogram edges.

track_index

Index of the track.

Details

Note the dendrogram edges can be rendered with the dendextend package.

Examples

Run this code
k = 500
dend = as.dendrogram(hclust(dist(runif(k))))
spiral_initialize(xlim = c(0, k), start = 360, end = 360*3)
spiral_track(height = 0.8, background_gp = gpar(fill = "#EEEEEE", col = NA))

# \donttest{
require(dendextend)
dend = color_branches(dend, k = 4)
spiral_initialize(xlim = c(0, k), start = 360, end = 360*3)
spiral_track(height = 0.8, background_gp = gpar(fill = "#EEEEEE", col = NA))
# }

Run the code above in your browser using DataLab