Nothing
nclones.list <-
function(x, ...)
{
if (!is.null(attr(x, "n.clones"))) {
nc <- attr(x, "n.clones")
} else {
klist <- lapply(x, nclones.default)
nc <- unique(unlist(klist))
if (is.null(nc))
return(NULL)
if (length(nc) > 1)
stop("non unique value")
method <- lapply(klist, function(z) attr(z, "method"))
method[sapply(method, is.null)] <- NA
attr(nc, "method") <- unlist(method)
}
nc
}
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.