Plot an object of class clustering
Usage
# S3 method for class 'clustering'
plot(x, horiz = TRUE, type = "dendrogram", ...)
Author
Tiago Olivoto tiagoolivoto@gmail.com
Examples
# \donttest{
mean_gen <-
data_ge2 %>%
mean_by(GEN) %>%
column_to_rownames("GEN")
d <- clustering(mean_gen)
plot(d, xlab = "Euclidean Distance")
# }