Learn R Programming

daltoolbox (version 1.3.717)

plot_dendrogram: Plot dendrogram

Description

Dendrogram plot for an hclust or dendrogram object using ggplot2.

Usage

plot_dendrogram(hc, labels = TRUE, label_size = 3, title = NULL)

Value

returns a ggplot2::ggplot graphic

Arguments

hc

an object of class hclust or dendrogram

labels

logical; whether to draw leaf labels

label_size

label text size

title

optional plot title

Details

Converts a dendrogram into line segments and renders it with ggplot2.

Examples

Run this code
data(iris)
hc <- hclust(dist(scale(iris[,1:4])), method = "ward.D2")
grf <- plot_dendrogram(hc)
plot(grf)

Run the code above in your browser using DataLab