Usage
PCAsimilarity(cov.x, cov.y, ...)## S3 method for class 'default':
PCAsimilarity(cov.x, cov.y, ret.dim = NULL, ...)
## S3 method for class 'list':
PCAsimilarity(cov.x, cov.y = NULL, ..., repeat.vector = NULL,
parallel = FALSE)
Arguments
cov.x
Single covariance matrix ou list of covariance matrices.
If cov.x is a single matrix, it is compared to cov.y.
If cov.x is a list and no cov.y is suplied, all matrices
are compared to each other.
If cov.x is a list and cov.y is suplied, all matrices in co
cov.y
First argument is compared to cov.y.
...
aditional arguments passed to other methods
ret.dim
number of retained dimensions in the comparison. Defaults to all.
repeat.vector
Vector of repeatabilities for correlation correction.
parallel
if TRUE computations are done in parallel. Some foreach backend must be registered, like doParallel or doMC.