Nothing
case <- function(...) {
dots <- list(...)
for (dot in dots) {
if (!inherits(dot, "formula"))
return(dot)
else if (length(dot) == 2) {
expr <- dot[[2]]
return(eval(expr, envir = environment(dot)))
}
else {
cond <- dot[[2]]
expr <- dot[[3]]
if (eval(cond, envir = environment(dot)))
return(eval(expr, envir = environment(dot)))
}
}
NULL
}
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.