I will appreciate it so much if anyone of you show me how to color the main branches on the Fan clusters.
Please use the following example:
library(ape)
library(cluster)
data(mtcars)
plot(as.phylo(hclust(dist(mtcars))),type="fan")
|
I will appreciate it so much if anyone of you show me how to color the main branches on the Fan clusters. Please use the following example:
|
|||
|
|
|
You will need to be more specific about what you mean by "color the main branches" but this may give you some ideas:
The odd numbered edges are the radial arms in a fan plot so this mildly ugly (or perhaps devilishly clever?) hack colors only the arms with length greater than 40:
|
|||
|
|
If you want to color the main branches to indicate which class that sample belongs to, then you might find the function ColorDendrogram in the R package sparcl useful (can be downloaded from here). Here's some sample code:
This will generate a dendrogram where the leaves are colored according to which of the two samples they came from. |
|||
|
|