繁体   English   中英

如何将饼图添加到 ggplot 系统发育树的顶端?

[英]How can I add pie charts to the tip of a ggplot phylogenetic tree?

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

这是一个简单的捏造例子

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()

带有提示标签的系统发育树

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

这段代码应该可以工作,使用 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)

在此处输入图片说明

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM