smeanMC:

Usage Arguments Examples

Usage

1
smeanMC(m, cop = 6, MM = FALSE, op = 1, outfun = outogk, cov.fun = rmba, ...)

Arguments

m
cop
MM
op
outfun
cov.fun
...

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
##---- 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 (m, cop = 6, MM = FALSE, op = 1, outfun = outogk, cov.fun = rmba, 
    ...) 
{
    m <- elimna(m)
    if (op == 1) {
        temp <- outproMC(m, plotit = FALSE, cop = cop, MM = MM)$keep
    }
    if (op == 2) 
        temp <- outmgv(m, plotit = FALSE, cov.fun = cov.fun)$keep
    if (op == 3) 
        temp <- outfun(m, plotit = FALSE, ...)$keep
    val <- apply(m[temp, ], 2, mean)
    val
  }

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