getPsi {nopaco} | R Documentation |
getPsi
returns the concordance coefficient(s) from a matrix or a result obtained by the concordance.test
function.
getPsi(x, y, ...) ## S4 method for signature 'ConcordanceTest,missing' getPsi(x) ## S4 method for signature 'matrix,missing' getPsi(x, y, ...) ## S4 method for signature 'data.frame,missing' getPsi(x, y, ...) ## S4 method for signature 'data.frame,data.frame' getPsi(x, y, ...) ## S4 method for signature 'matrix,'NULL'' getPsi(x, y, ...) ## S4 method for signature 'matrix,matrix' getPsi(x, y, ...)
x |
A numeric matrix or an object |
y |
A numeric matrix (optional) |
... |
Not used |
A numeric vector with coefficient(s)
P.Rothery (1979) Biometrika 66(3):629-639
Other concordance functions: coef
,
concordance.test
, rfromPsi
matRandom <- matrix(rnorm(30),10,3) testResult <- concordance.test(matRandom) getPsi(testResult) getPsi(matRandom)