Nothing
.msg <-
function(..., width=getOption("width"), wrap. = TRUE)
## Use this helper to format all error / warning / message text
{
txt <- paste(...)
if (wrap.) {
txt <- strwrap(txt, width=width, exdent=2)
paste(txt, collapse="\n")
} else {
txt
}
}
.warning <-
function(..., call.=FALSE, immediate.=FALSE)
{
warning(.msg(...), call.=call., immediate.=immediate.)
invisible(TRUE)
}
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.