Learn R Programming

rococo (version 1.1.1)

RococoTestResults-class: Class "RococoTestResults"

Description

S4 class for storing results of the robust rank correlation test

Arguments

Objects

Objects of this class can be created by calling rococo.test.

References

http://www.bioinf.jku.at/software/rococo/

U. Bodenhofer and F. Klawonn (2008). Robust rank correlation coefficients on the basis of fuzzy orderings: initial steps. Mathware Soft Comput. 15(1):5-20.

See Also

rococo.test, rococo, show-methods

Examples

Run this code
## create data
f <- function(x) ifelse(x > 0.9, x - 0.9, ifelse(x < -0.9, x + 0.9, 0))
x <- rnorm(25)
y <- f(x) + rnorm(25, sd=0.1)

## perform correlation tests
ret <- rococo.test(x, y, similarity="classical", alternative="greater")
show(ret)

ret <- rococo.test(x, y, similarity="linear", alternative="greater")
show(ret)

ret <- rococo.test(x, y, similarity=c("classical", "gauss"), r=c(0, 0.1),
                   alternative="greater", numtests=10000)
show(ret)

Run the code above in your browser using DataLab