momci:

Usage Arguments Examples

Usage

1
momci(x, alpha = 0.05, nboot = 2000, bend = 2.24, SEED = TRUE, null.value = 0)

Arguments

x
alpha
nboot
bend
SEED
null.value

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
##---- 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, alpha = 0.05, nboot = 2000, bend = 2.24, SEED = TRUE, 
    null.value = 0) 
{
    if (SEED) 
        set.seed(2)
    data <- matrix(sample(x, size = length(x) * nboot, replace = TRUE), 
        nrow = nboot)
    est = mom(x, bend = bend)
    bvec <- apply(data, 1, mom, bend)
    bvec <- sort(bvec)
    low <- round((alpha/2) * nboot)
    up <- nboot - low
    low <- low + 1
    pv = mean(bvec > null.value) + 0.5 * mean(bvec == null.value)
    pv = 2 * min(c(pv, 1 - pv))
    list(ci = c(bvec[low], bvec[up]), p.value = pv, est.mom = est)
  }

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