plot.clustering: Plot an object of class clustering

View source: R/clustering.R

plot.clusteringR Documentation

Plot an object of class clustering

Description

Plot an object of class clustering

Usage

## S3 method for class 'clustering'
plot(x, horiz = TRUE, type = "dendrogram", ...)

Arguments

x

An object of class clustering

horiz

Logical indicating if the dendrogram should be drawn horizontally or not.

type

The type of plot. Must be one of the 'dendrogram' or 'cophenetic'.

...

Other arguments passed from the function plot.dendrogram or abline.

Value

An object of class ⁠gg, ggplot⁠ if type == "cophenetic".

Author(s)

Tiago Olivoto tiagoolivoto@gmail.com

Examples


mean_gen <-
 data_ge2 %>%
 mean_by(GEN) %>%
 column_to_rownames("GEN")

d <- clustering(mean_gen)
plot(d, xlab = "Euclidean Distance")


TiagoOlivoto/WAASB documentation built on March 20, 2024, 4:18 p.m.