KendallsTau {DRquality} | R Documentation |
Calculates the statistical correlation by Kendall. Basically a wrapper to pcaPP::cor.fk.
KendallsTau(InputDists, OutputDists)
InputDists |
Matrix containing the distances of the first dataset. |
OutputDists |
Matrix containing the distances of the second dataset. |
Equivalent to cor.fk
Michael Thrun
if(requireNamespace("FCPS")){
data(Hepta,package="FCPS")
InputDist=dist(Hepta$Data)
projection=cmdscale(InputDist, k=2)
KendallsTau(as.matrix(InputDist),as.matrix(dist(projection)))
}