cori:

Usage Arguments Examples

Usage

1
cori(x, y, z, pt = median(z), fr = 0.8, est = onestep, corfun = pbcor, testit = FALSE, nboot = 599, sm = FALSE, xlab = "X", ylab = "Y", ...)

Arguments

x
y
z
pt
fr
est
corfun
testit
nboot
sm
xlab
ylab
...

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (x, y, z, pt = median(z), fr = 0.8, est = onestep, corfun = pbcor, 
    testit = FALSE, nboot = 599, sm = FALSE, xlab = "X", ylab = "Y", 
    ...) 
{
    m <- cbind(x, y, z)
    m <- elimna(m)
    x <- m[, 1]
    y <- m[, 2]
    z <- m[, 3]
    flag <- (z < pt)
    runmean2g(x[flag], y[flag], x[!flag], y[!flag], fr = fr, 
        est = est, sm = sm, xlab = xlab, ylab = ylab, ...)
    output <- "Done"
    if (testit) {
        output <- twocor(x[flag], y[flag], x[!flag], y[!flag], 
            corfun = corfun, nboot = nboot, plotit = FALSE)
    }
    output
  }

musto101/wilcox_R documentation built on May 23, 2019, 10:52 a.m.