Nothing
normalizer <- function(y, method.norm = "none", qnL = 0.03) {
if (qnL <= 0.001 || qnL >= 0.999)
stop("qnL must be within 0.001 and 0.999.")
# Select a method for the normalization
method.norm <- check.method(c("none", "luqn", "minm", "max", "zscore"), method.norm)
# TODO Test meaningfulness of qnL
switch(method.norm,
none = do.call(function(y) y, c(list(y = y))),
minm = do.call(function(y) (y - min(y)) / (max(y) - min(y)),
c(list(y = y))),
max = do.call(function(y) (y / max(y)),
c(list(y = y))),
luqn = do.call(function(y, qnL) (y - quantile(y, qnL)) /
(quantile(y, 1 - qnL) - quantile(y, qnL)),
c(list(y = y, qnL = qnL))),
zscore = do.call(function(y) (y - mean(y)) / sd(y),
c(list(y = y)))
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.