1 |
fit |
|
x |
|
method |
|
depth |
|
plot |
|
prob |
|
color |
|
outliercol |
|
barcol |
|
fullout |
|
factor |
|
xlim |
|
ylim |
|
... |
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
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.