Nothing
# code from package rpart (copy)
formatg <- function(x, digits = getOption("digits"), format = paste0("%.", digits, "g"))
{
if (!is.numeric(x))
stop("'x' must be a numeric vector")
temp <- sprintf(format, x)
if (is.matrix(x))
matrix(temp, nrow = nrow(x))
else temp
}
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.