I'm running some cluster analysis and I'm using pvclust as showed below:
d.pv <- pvclust(t(mtcars), method = "euclidean",
method.hclust = "complete", nboot = 10)
plot(d.pv)
I want to edit the graph and remove red, green numbers, and grey numbers.
Also I want to color label on x axis according to a a specific column mtcars$cyl
To remove the red, green, and grey numbers use the following:
Colouring the labels is trickier within the confines of
plot.pvclust. I'd suggest converting it intoggplot2for more flexibility.