Welcome to ClientVPS Mirrors

Modifying ggdendogram output

Modifying ggdendogram output

If you use ggdendrogram() to create your plot, the resulting object is a ggplot. You have full control over this using any function available in ggplot.

First create an example dataset.

library(ggdendro)
library(ggplot2)
hc <- hclust(dist(USArrests), "ave")

Plot the default ggdendrogram() output:

ggdendrogram(hc, rotate = FALSE, size = 2)

Use a different theme:

ggdendrogram(hc, rotate = FALSE, size = 2) +
  theme_bw()

Or modify just one element, for example add a y-axis.

ggdendrogram(hc, rotate = FALSE, size = 2) +
  theme( axis.line.y = element_line() )

In summary, ggdendrogram() is a convenience function that creates a ggplot. Once you have this plot, you can modify the plot using tools that you are familiar with.

Need a high-speed mirror for your open-source project?
Contact our mirror admin team at info@clientvps.com.

This archive is provided as a free public service to the community.
Proudly supported by infrastructure from VPSPulse , RxServers , BuyNumber , UnitVPS , OffshoreName and secure payment technology by ArionPay.