Nothing
test_double <- function(name, param, default)
{
if(missing(param)) {
if(is.null(default)) {
p = paste("'",name,"' argument is missing.", sep="");
stop(p)
} else
return(default);
} else {
if(is.integer(param))
param = as.double(param)
if(!is.double(param)) {
p = paste("'",name,"' argument has to be of type double.", sep="");
stop(p);
}
}
return(param);
}
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.