mean.list {popbio} | R 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 |
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
Examples
mean(hudsonia)
# or
x <- matrix(unlist(hudsonia), ncol=length(hudsonia) )
matrix2(rowMeans(x), colnames(hudsonia[[1]]))
[Package popbio version 2.8 Index]