]> git.donarmstrong.com Git - ape.git/blob - man/print.phylo.Rd
some big fixes for ape 2.7-1
[ape.git] / man / print.phylo.Rd
1 \name{print.phylo}
2 \alias{print.phylo}
3 \alias{print.multiPhylo}
4 \alias{str.multiPhylo}
5 \title{Compact Display of a Phylogeny}
6 \usage{
7 \method{print}{phylo}(x, printlen = 6 ,...)
8 \method{print}{multiPhylo}(x, details = FALSE ,...)
9 \method{str}{multiPhylo}(object, ...)
10 }
11 \arguments{
12   \item{x}{an object of class \code{"phylo"} or \code{"multiPhylo"}.}
13   \item{object}{an object of class \code{"multiPhylo"}.}
14   \item{printlen}{the number of labels to print (6 by default).}
15   \item{details}{a logical indicating whether to print information on
16     all trees.}
17   \item{\dots}{further arguments passed to or from other methods.}
18 }
19 \description{
20   These functions prints a compact summary of a phylogeny, or a list of
21   phylogenies, on the console.
22 }
23 \value{
24   NULL.
25 }
26 \author{Ben Bolker \email{bolker@zoo.ufl.edu} and Emmanuel Paradis}
27 \seealso{
28   \code{\link{read.tree}}, \code{\link{summary.phylo}},
29   \code{\link[base]{print}} for the generic \R function
30 }
31 \examples{
32 x <- rtree(10)
33 print(x)
34 print(x, printlen = 10)
35 x <- rmtree(2, 10)
36 print(x)
37 print(x, TRUE)
38 str(x)
39 }
40 \keyword{manip}