Nothing
scale_data_frame <-
function(x, center = TRUE, scale = TRUE)
{
if (isFALSE(center) && isFALSE(scale)) return(x)
if (!is.data.frame(x)) return (scale(x, center, scale))
i <- vapply(x, is.numeric, NA) | vapply(x, is.logical, NA)
if (any(i)) {
x[, i] <- tmp <- scale.default(x[, i, drop = FALSE], na.omit(center), na.omit(scale))
if(center || !is.logical(center))
attr(x, "scaled:center")[i] <- attr(tmp, "scaled:center")
if(scale || !is.logical(scale))
attr(x, "scaled:scale")[i] <- attr(tmp, "scaled:scale")
}
x
}
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.