phyclust (version 0.1-24)

print.object: Functions for Printing or Summarizing Objects According to Classes

Description

Several classes are declared in phyclust, and these are functions to print and summary objects.

Usage

# S3 method for baseml
print(x, ...)
# S3 method for ms
print(x, ...)
# S3 method for phyclust
print(x, digits = max(4, getOption("digits") - 3), ...)
# S3 method for Pt
print(x, ...)
# S3 method for RRand
print(x, digits = max(4, getOption("digits") - 3), ...)
# S3 method for seq.data
print(x, ...)
# S3 method for seqgen
print(x, ...)
# S3 method for phyclust
summary(object, ...)

Arguments

x

an object with the class attributes.

digits

for printing out numbers.

object

an object with the class attributes.

other possible options.

Value

The results will cat or print on the STDOUT by default.

Details

These are useful functions for summarizing and debugging.

For ms, seqgen, and paml.baseml, it will show the result as standalone versions on the STDOUT out with line by line.

For other functions, they only show summaries of objects. Use names or str to explore the details.

References

Phylogenetic Clustering Website: https://snoweye.github.io/phyclust/

See Also

ms, paml.baseml, phyclust, phyclust.Pt, RRand, seqgen.

Examples

Run this code
# NOT RUN {
library(phyclust, quiet = TRUE)

# Functions applied by directly type the names of objects.
# }

Run the code above in your browser using DataCamp Workspace