我正在尝试指定在我的祖先状态重建分析中使用的颜色,以便我可以在其他图表中使用相同的颜色相同的数据。但是,当我nodelabels
从猿使用时,我指定的颜色与显示的颜色不一致。有人知道为什么吗?以及如何解决它?请参阅下面的问题示例:
rm(list = ls())
library(phytools)
library(ape)
library(RColorBrewer)
set.seed(1237)
tree = rtree(50)
plot(tree)
variable = rTraitDisc(tree, k = 5)
names(variable) = tree$tip.label
cols = data.frame(type = levels(variable),
color = I(brewer.pal(nlevels(variable), name = 'Set1')))
cols_vector = cols$color
names(cols_vector) = cols$type
fit = ace(x = variable, phy = tree, type = 'discrete')
nodelabels(node=1:tree$Nnode+Ntip(tree),
pie=fit$lik.anc, piecol=cols_vector)
tiplabels(pie=to.matrix(variable,sort(unique(variable))),piecol=cols_vector)
tiplabels(text = variable)
这给出了图像:
大多数颜色都可以排列,但 E 显示为紫色,但代码为#FF7F00(橙色)。这段代码举例说明了这一点:
t = table(variable)
barplot(t, col = cols_vector[match(names(t), names(cols_vector))])
任何意见,将不胜感激。