Learn R Programming

GeometricMorphometricsMix (version 0.6.0.1)

print.parallel_Kmult: Print method for parallel_Kmult objects

Description

Provides a summary of Kmult analysis results showing the range of Kmult values for each combination of dataset and treeset.

Usage

# S3 method for parallel_Kmult
print(x, ...)

Value

Invisibly returns the input object

Arguments

x

An object of class 'parallel_Kmult' produced by Kmultparallel

...

Additional arguments (currently not used)

Examples

Run this code
# \donttest{
# Create simple example data
library(phytools)
trees = replicate(3, pbtree(n = 20), simplify = FALSE)
class(trees) = "multiPhylo"
data = matrix(rnorm(20 * 4), nrow = 20, ncol = 4)
rownames(data) = trees[[1]]$tip.label

# Run analysis and print results
result = Kmultparallel(data, trees)
print(result)  # or simply: result
# }

Run the code above in your browser using DataLab