X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=man%2Fprint.phylo.Rd;h=f1ad30609f7f1085f6ec18e4821f9474434878f0;hb=a2fc961dffe9f9b7994ed880e68c03b2334dc341;hp=f0b83a462b517a6ac141489092fcd246374dd89a;hpb=c827059eeafc8cbe41c812b26979543ab287803e;p=ape.git diff --git a/man/print.phylo.Rd b/man/print.phylo.Rd index f0b83a4..f1ad306 100644 --- a/man/print.phylo.Rd +++ b/man/print.phylo.Rd @@ -1,33 +1,40 @@ \name{print.phylo} \alias{print.phylo} \alias{print.multiPhylo} -\alias{[.multiPhylo} +\alias{str.multiPhylo} \title{Compact Display of a Phylogeny} \usage{ \method{print}{phylo}(x, printlen = 6 ,...) \method{print}{multiPhylo}(x, details = FALSE ,...) -\method{[}{multiPhylo}(x, i) +\method{str}{multiPhylo}(object, ...) } \arguments{ \item{x}{an object of class \code{"phylo"} or \code{"multiPhylo"}.} + \item{object}{an object of class \code{"multiPhylo"}.} \item{printlen}{the number of labels to print (6 by default).} \item{details}{a logical indicating whether to print information on all trees.} - \item{i}{indices of the trees to select from a list; this may be a - vector of integers, logicals, or names.} - \item{...}{further arguments passed to or from other methods.} + \item{\dots}{further arguments passed to or from other methods.} } \description{ - These functions prints a compact summary of a phylogeny, or a list of, - on the console. + These functions prints a compact summary of a phylogeny, or a list of + phylogenies, on the console. } \value{ - An object of class \code{"multiPhylo"} or NULL. + NULL. } -\author{Ben Bolker \email{bolker@zoo.ufl.edu} and Emmanuel Paradis - \email{Emmanuel.Paradis@mpl.ird.fr}} +\author{Ben Bolker and Emmanuel Paradis} \seealso{ \code{\link{read.tree}}, \code{\link{summary.phylo}}, - \code{\link[base]{print}} for the generic R function + \code{\link[base]{print}} for the generic \R function +} +\examples{ +x <- rtree(10) +print(x) +print(x, printlen = 10) +x <- rmtree(2, 10) +print(x) +print(x, TRUE) +str(x) } \keyword{manip}