ladderShow: Show ladders

View source: R/ladderShow.R

ladderShowR Documentation

Show ladders

Description

Plot a tree, highlighting any ladders within it.

Usage

ladderShow(
  tree,
  mainCol = "black",
  ladderEdgeCol = "red",
  ladderNodeCol = "red",
  ...
)

Arguments

tree

a tree of class phylo or phylo4. The tree should be binary and rooted; if not it will be coerced into a binary rooted tree using multi2di, if possible.

mainCol

colour for edges which are not ladders (default is black)

ladderEdgeCol

colour for ladder edges (default is red)

ladderNodeCol

colour for ladder nodes (default is red)

...

further arguments to be passed to plot.phylo

Value

A plot of the tree, with ladder edges and nodes highlighted by colour.

Author(s)

Michelle Kendall michelle.louise.kendall@gmail.com

Michael Boyd mboyd855@gmail.com

See Also

ladderSizes

Examples

## Highlight in blue the ladders in a random tree with 50 tips:
tree <- rtree(50)
ladderShow(tree, edge.width=2)
# compare to:
ladderSizes(tree)



phyloTop documentation built on Feb. 16, 2023, 5:55 p.m.