]> git.donarmstrong.com Git - ape.git/blob - man/kronoviz.Rd
new trex() + kronoviz() and bug fixing in identify.phylo()
[ape.git] / man / kronoviz.Rd
1 \name{kronoviz}
2 \alias{kronoviz}
3 \title{Plot Multiple Chronograms on the Same Scale}
4 \description{
5   The main argument is a list of (rooted) trees which are plotted on the
6   same scale.
7 }
8 \usage{
9 kronoviz(x, layout = length(x), horiz = TRUE, ...)
10 }
11 \arguments{
12   \item{x}{a list of (rooted) trees of class \code{"phylo"}.}
13   \item{layout}{an integer giving the number of trees plotted
14     simultaneously; by default all.}
15   \item{horiz}{a logical specifying whether the trees should be plotted
16     rightwards (the default) or upwards.}
17   \item{\dots}{further arguments passed to \code{plot.phylo}.}
18 }
19 \details{
20   The size of the individual plots is proportional to the size of the
21   trees.
22 }
23 \value{NULL}
24 \author{Emmanuel Paradis}
25 \seealso{
26   \code{\link{plot.phylo}}
27 }
28 \examples{
29 TR <- replicate(10, rcoal(sample(11:20, size = 1)), simplify = FALSE)
30 kronoviz(TR)
31 kronoviz(TR, horiz = FALSE, type = "c", show.tip.label = FALSE)
32 }
33 \keyword{hplot}