normTmm:

Usage Arguments Examples

Usage

1
normTmm(x, SEED = TRUE, nboot = 2000)

Arguments

x
SEED
nboot

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
##---- 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, SEED = TRUE, nboot = 2000) 
{
    if (SEED) 
        set.seed(45)
    no = out(x, SEED = FALSE)$n.out
    val = NA
    x = elimna(x)
    n = length(x)
    for (i in 1:nboot) val[i] = out(rnorm(n), SEED = FALSE)$n.out
    list(n.out = no, p.value = mean(val >= no))
  }

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