mcr.test {mro} | R Documentation |
Tests the significance of mutliple correlation coefficient
mcr.test(x, ld, rd)
x |
Data Matrix or Variance Covariance or Correlation matrix |
ld |
Label of dependent Variable |
rd |
Vector of labels of independent variables |
a htest class object
Abirami S
## Example library(MASS) mu<-c(10,12,13,14) sig<-matrix(0,4,4) diag(sig)<-c(2,1,1,2) da<-mvrnorm(25,mu,sig) mcr.test(da,1,c(2:4))