Nothing
bootstrap.sample <-
function(data, group, method = c("ncoutcome","coutcome")) {
method <- match.arg(method)
if(method == "coutcome"){
res <- do.call("rbind", lapply(split(data, data[,group]), function(x) x[sample(nrow(x), replace=TRUE),]))
} else {
res <- data[sample(nrow(data), replace=TRUE),]
}
res
}
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.