func.plot:

Usage Arguments Examples

Usage

1
func.plot(fit, x = NULL, method = "MBD", depth = NULL, plot = TRUE, prob = 0.5, color = 6, outliercol = 2, barcol = 4, fullout = FALSE, factor = 1.5, xlim = c(1, nrow(fit)), ylim = c(min(fit) - 0.5 * diff(range(fit)), max(fit) + 0.5 * diff(range(fit))), ...)

Arguments

fit
x
method
depth
plot
prob
color
outliercol
barcol
fullout
factor
xlim
ylim
...

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
##---- 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 (fit, x = NULL, method = "MBD", depth = NULL, plot = TRUE, 
    prob = 0.5, color = 6, outliercol = 2, barcol = 4, fullout = FALSE, 
    factor = 1.5, xlim = c(1, nrow(fit)), ylim = c(min(fit) - 
        0.5 * diff(range(fit)), max(fit) + 0.5 * diff(range(fit))), 
    ...) 
{
    library(fda)
    elimna(fit)
    fit = t(fit)
    res = fbplot(fit, x = NULL, method = method, depth = depth, 
        plot = plot, prob = prob, color = color, outliercol = outliercol, 
        barcol = barcol, fullout = fullout, factor = factor, 
        xlim = xlim, ylim = ylim, ...)
    res
  }

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