1

我正在尝试在树的尖端制作带有饼图的系统发育树,但我真的不知道该怎么做。

这是一个简单的虚构示例

library("treeio")
library("ggtree")

nwk <- system.file("extdata", "sample.nwk", package="treeio")
tree <- read.tree(nwk)

ggplot(tree, aes(x, y)) + geom_tree() + theme_tree() + geom_tiplab()

带有尖端标签的系统发育树

如果我现在想在标签名称右侧的每个提示处包含一个小饼图(因此带有字母的标签名称应该仍然存在),我应该怎么做?

4

1 回答 1

0

这段代码应该可以工作,使用 ggplot 和 ggtree

library(ggtree)
library(reshape2)
library(ggplot2)

set.seed(2020-12-18)

## generate random data with 15 tips
num_tips = 15
tr <- rtree(num_tips)
p <- ggtree(tr)

a <- runif(num_tips, 0, 0.33)
b <- runif(num_tips, 0, 0.33)
c <- runif(num_tips, 0, 0.33)
d <- 1 - a - b - c
dat <- data.frame(a=a, b=b, c=c, d=d)

## melt the dataframe to create pie-charts
dat.m = melt(dat, id.vars = "tip")

## create list to hold all pie charts
pies = list()
for (i in 1:num_tips) {
  curr_dat = melt(dat[i,])
  ## create a ggplot object for each pie chart
  pies[[i]] =  ggplot(curr_dat, aes(y = value, fill = variable, x="")) + 
    geom_bar(stat = "identity") +
    coord_polar("y", start=0) +
    theme_void() + scale_fill_brewer(palette = "Set1", guide = F)
}
# give them the appropriate names and plot on tree
names(pies) = 1:15
inset(p, pies, width=0.1, height=0.1, hjust=0)

在此处输入图像描述

于 2020-12-18T13:39:28.067 回答