ape (version 3.1-4)

print.phylo: Compact Display of a Phylogeny

Description

These functions prints a compact summary of a phylogeny, or a list of phylogenies, on the console.

Usage

## S3 method for class 'phylo':
print(x, printlen = 6 ,...)
## S3 method for class 'multiPhylo':
print(x, details = FALSE ,...)
## S3 method for class 'multiPhylo':
str(object, ...)

Arguments

Value

NULL.

See Also

read.tree, summary.phylo, print for the generic Rfunction

Examples

Run this code
x <- rtree(10)
print(x)
print(x, printlen = 10)
x <- rmtree(2, 10)
print(x)
print(x, TRUE)
str(x)

Run the code above in your browser using DataCamp Workspace