R ggtree : How to label single tree tip with ggtree similar to labeling nodes with geom_cladelabel

标签 r ggplot2 dplyr geom-text ggtree

我在使用 ggtree 标记树中的单个提示时遇到问题。我正在尝试使用 geom_hilight 和 geom_cladelabel 突出显示和标记树中的节点。这对于具有 1 个以上树尖的节点似乎工作正常,但是当我尝试标记单个提示时,我收到一条警告消息并且该提示没有被标记。

例子:

library(dplyr)
library(ggtree)

library(dplyr)
library(ggtree)

#Create tree
set.seed(123)
tree <- rtree(30)
ggtree(tree)

#Highlight and label clade
ggtree(tree) + geom_text(aes(label=node)) + geom_tiplab(size=3, offset=0.1) +
  geom_hilight(node=3, fill="steelblue", alpha=0.5) +
  geom_hilight(node=38, fill="pink", alpha=0.5) +
    geom_cladelabel(node=38, label="clade 2", align=T, 
                  color='black', fontsize=4)

enter image description here

如您所见,我可以使用 geom_hilight 突出显示节点 38 和 3。我还用 geom_cladelabel 用文本“Clade 2”标记了节点 38。

但是,当我尝试使用 geom_cladelabel 标记节点 3 时,我收到一条警告消息:
#Highlight and label single tip
ggtree(tree) + geom_text(aes(label=node)) + geom_tiplab(size=3, offset=0.1) +
  geom_hilight(node=3, fill="steelblue", alpha=0.5) +
  geom_hilight(node=38, fill="pink", alpha=0.5) +
    geom_cladelabel(node=3, label="clade 1", align=T, 
                  color='black', fontsize=4) +
    geom_cladelabel(node=38, label="clade 2", align=T, 
                  color='black', fontsize=4)

Warning messages:
1: In max(sp.df$x, na.rm = TRUE) :
  no non-missing arguments to max; returning -Inf
2: In min(y) : no non-missing arguments to min; returning Inf
3: In max(y) : no non-missing arguments to max; returning -Inf
4: In max(sp.df$x, na.rm = TRUE) :
  no non-missing arguments to max; returning -Inf
5: In min(y) : no non-missing arguments to min; returning Inf
6: In max(y) : no non-missing arguments to max; returning -Inf

由于某种原因,来自进化枝标签的行最终覆盖了整棵树:
enter image description here

有没有一种方法可以像 clade_geomlabel 对常规节点所做的那样以相同的方式标记单个尖端?

任何帮助表示赞赏。

最佳答案

这不是真正的答案,但希望能帮助您进行故障排除,因为我没有收到错误消息。请参阅下面的代码、情节和 session 信息。似乎错误来自 clade_functions.R .我会尝试的第一件事是检查 tidyr 和 tidytree 包,这部分似乎严重依赖于此。

library(dplyr)
library(ggtree)

#Create tree
set.seed(123)
tree <- rtree(30)
ggtree(tree)

ggtree(tree) + geom_text(aes(label=node)) + 
geom_tiplab(size=3, offset=0.1) +
geom_hilight(node=3, fill="steelblue", alpha=0.5) +
geom_hilight(node=38, fill="pink", alpha=0.5) +
geom_cladelabel(node=3, label="clade 1", align=T, 
                  color='black', fontsize=2) +
geom_cladelabel(node=38, label="clade 2", align=T, 
                  color='black', fontsize=2)

enter image description here
R version 3.6.1 (2019-07-05)
Platform: x86_64-apple-darwin15.6.0 (64-bit)
Running under: OS X El Capitan 10.11.6

Matrix products: default
BLAS:   /Library/Frameworks/R.framework/Versions/3.6/Resources/lib/libRblas.0.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/3.6/Resources/lib/libRlapack.dylib

locale:
[2] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages:
[2] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[2] ggtree_1.16.6 dplyr_0.8.3  

loaded via a namespace (and not attached):
 [2] Rcpp_1.0.2          magrittr_1.5        tidyselect_0.2.5   
 [4] munsell_0.5.0       colorspace_1.4-1    ape_5.3            
 [7] lattice_0.20-38     R6_2.4.0            rlang_0.4.1        
[10] parallel_3.6.1      grid_3.6.1          nlme_3.1-140       
[13] gtable_0.3.0        lazyeval_0.2.2      assertthat_0.2.1   
[16] lifecycle_0.1.0     tibble_2.1.3        crayon_1.3.4       
[19] treeio_1.8.2        BiocManager_1.30.10 purrr_0.3.3        
[22] ggplot2_3.2.1       tidyr_1.0.0         vctrs_0.2.0        
[25] zeallot_0.1.0       tidytree_0.3.2      glue_1.3.1         
[28] labeling_0.3        compiler_3.6.1      pillar_1.4.2       
[31] backports_1.1.5     rvcheck_0.1.5       scales_1.0.0       
[34] jsonlite_1.6        pkgconfig_2.0.3   

关于R ggtree : How to label single tree tip with ggtree similar to labeling nodes with geom_cladelabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60707131/

相关文章:

与 XTS 绑定(bind)。如何在不按索引日期排序的情况下堆叠

r - 为什么 as.Date ("06/10/2013", "%m/%d/%y") 返回 2020 年?

r - 循环为数据框中的变量生成绘图

r - ggplot2 中两个数据集的两个不同比例的 y 轴

r - 使用 coord_equal() 时垂直对齐不同高度的多面 ggplot

r - 根据dplyr中每列中的数据组合数据框

r - R中不同级别的李克特分组

r - 使用 mutate 计算表的 6 列之间的所有绝对差异?

r - 变异列显示与前一时期相比增加/减少的值

r - 如果我添加和减去另一个变量,data.table 中的神秘 : Why does the as. character() 函数会运行得更快吗?