Nothing
qsum <- function(x) {
if (! (is.numeric(x) || is.character(x)))
stop("'x' not numeric or character")
if (is.numeric(x))
x <- d2q(x)
if (! (is.character(x))) {
stop("Cannot happen!")
}
.Call(C_qsump, x, as.integer(1))
}
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.