rv.coef {cata} | R Documentation |
Calculate RV Coefficient
Description
Calculate RV coefficient
Usage
rv.coef(X, Y, method = 1)
Arguments
X |
input matrix (same dimensions as |
Y |
input matrix (same dimensions as |
method |
|
Value
RV coefficient
References
Robert, P., & Escoufier, Y. (1976). A unifying tool for linear multivariate statistical methods: the RV-coefficient. Journal of the Royal Statistical Society: Series C (Applied Statistics), 25, 257-265.
Examples
# Generate some data
set.seed(123)
X <- matrix(rnorm(8), nrow = 4)
Y <- matrix(rnorm(8), nrow = 4)
# get the RV coefficient
rv.coef(X, Y)
[Package cata version 0.1.0.6 Index]