phylomoji with ggtree

[This article was first published on YGC ยป R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

If you search the hashtag, #phylomoji, in twitter, you can find many creative phylogenetic tree constructed with emoji.

Now with ggtree, you can play #phylomoji in R.

Newick tree text can be constructed with emoji directly in R, and we can parse the text and visualize it with only one single line of code.

?View Code RSPLUS
1
2
3
require(colorspace)
require(ggtree)
ggtree(read.tree(text=tree_text)) + geom_tiplab(color=rainbow_hcl(4))

Have fun with ggtree.

Note: In debian-based Linux, emoji works fine in both R console and plot if ttf-ancient-fonts was installed. In OS X, Apple Color Emoji.ttf works fine in R console, but not in R plotting. The figure posted in my tweet used OpenSansEmoji font.

Related Posts

To leave a comment for the author, please follow the link and comment on their blog: YGC ยป R.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)