mean.list: Mean matrix

View source: R/mean.list.R

mean.listR Documentation

Mean matrix

Description

Calculates mean matrix from a list of matrices

Usage

## S3 method for class 'list'
mean(x, ...)

Arguments

x

A list of two or more matrices

...

Additional arguments passed to rowMeans

Details

Returns the mean matrix from a list of matrices using a combination of unlist and rowMeans. See example for details.

Value

The mean matrix

Note

S3 method for the mean of a list of matrices

Author(s)

Chris Stubben

See Also

var2

Examples

mean(hudsonia)
# or
x <- matrix(unlist(hudsonia), ncol=length(hudsonia) )
matrix2(rowMeans(x), colnames(hudsonia[[1]]))


cstubben/popbio documentation built on April 2, 2024, 4:18 a.m.