Nothing
pbsapply <-
function (X, FUN, ..., simplify = TRUE, USE.NAMES = TRUE, cl = NULL)
{
FUN <- match.fun(FUN)
answer <- pblapply(X = X, FUN = FUN, ..., cl = cl) # pb_specific_code
if (USE.NAMES && is.character(X) && is.null(names(answer)))
names(answer) <- X
if (!identical(simplify, FALSE) && length(answer))
simplify2array(answer, higher = (simplify == "array"))
else answer
}
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.