microbiomeViz--斜体显示taxon name

微生物种名属名经常需要斜体表示,现在microbiomeViz添加了一个生成expression的函数,可以直接将一个短语中的一个(个人认为很少会遇到画图时axis label涉及多个物种)指定名字变成斜体。

library(microbiomeViz)
## Warning: replacing previous import 'ape::rotate' by 'ggtree::rotate' when
## loading 'microbiomeViz'
library(ggplot2)
ggplot(SRS014459_Stool_profile, aes(x=V2)) + 
  geom_histogram(col='black') + theme_bw() + theme(axis.title = element_text(size=23)) +
  labs(x=formatPhrase("Hello E. coli! Good-bye!","E. coli"))
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

Related

comments powered by Disqus