Nothing
digits <- function(x, n=NULL, simplify = FALSE) {
if(length(x) > 1) {
if(is.null(n) & simplify) {
n <- floor(max(log10(x))) + 1
}
sapply(x,digits, simplify=simplify, n=n)
} else {
if(is.null(n)) {
n <- floor(log10(x))
} else {
n <- n - 1
}
x %/% 10^seq(n,0) %% 10
}
}
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.