wrapCorTest.htest {sigr} | R Documentation |
Wrap cor.test (test of liner correlation).
Description
Wrap cor.test (test of liner correlation).
Usage
## S3 method for class 'htest'
wrapCorTest(x, ...)
Arguments
x |
cor.test result |
... |
extra arguments (not used) |
Value
wrapped stat
Examples
d <- data.frame(x=c(1,2,3,4,5,6,7,7),
y=c(1,1,2,2,3,3,4,4))
ct <- cor.test(d$x,d$y)
wrapCorTest(ct)
[Package sigr version 1.1.5 Index]