Learn R Programming

GeometricMorphometricsMix (version 0.6.0.1)

summary.parallel_Kmult: Summary method for parallel_Kmult objects

Description

Provides detailed summary statistics for Kmult analysis results.

Usage

# S3 method for parallel_Kmult
summary(object, ...)

Value

Invisibly returns the input object

Arguments

object

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 get summary
result = Kmultparallel(data, trees)
summary(result)
# }

Run the code above in your browser using DataLab