GithubHelp home page GithubHelp logo

Comments (3)

brj1 avatar brj1 commented on July 18, 2024 1

With ggdensitree you can choose the tip order. ggdensitree is for plotting multiple trees though, so it takes a list of trees.

library(ggtree)

# example tree
set.seed(0)
tree <- rtree(5)

# ggtree
ggtree(tree) + geom_tiplab()

# ggdensitree
ggdensitree(list(tree), layout = 'rectangular') + geom_tiplab()

# tip.order can be used to reorder tips
ggdensitree(list(tree), layout = 'rectangular', tip.order = paste0("t", 1:5)) + geom_tiplab()

# you can also put a more reasonable order
ggdensitree(list(tree), layout = 'rectangular', tip.order = c("t2", "t5", "t1", "t3", "t4")) + geom_tiplab()

By default ggtree puts the tip labels in the order which ladderizes the tree (arranges the splits so that smaller clades go below larger clades). You can set ladderize = FALSE in ggtree's options to have it arrange tips in the order order they appear in the tree's newick file.

from ggtree.

shenzhenzth avatar shenzhenzth commented on July 18, 2024

Thank you very much
I will definitely read and use the documentation carefully in the future.

Can I ask one more question?
If I want to export tree by particular "tip.order", can the demand be realized?
"write.beast" function and others seemly can not do this?

Best wishes.

from ggtree.

shenzhenzth avatar shenzhenzth commented on July 18, 2024

Thank you very much
I will definitely read and use the documentation carefully in the future.

Can I ask one more question?
If I want to export tree by particular "tip.order", can the demand be realized?
"write.beast" function and others seemly can not do this?

Best wishes.

from ggtree.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.