Nothing
### Replace mcapply with reasonable default that works on windows.
.mclapply <- function(...) {
if(require(parallel)) {
if(is.null(options("mc.cores")[[1]])) {
message("Remember to set options('mc.cores') if you want multiple cores used where possible")
}
return(mclapply(...))
} else {
return(lapply(...))
}
}
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.