Nothing
bootstrapping <-
function(pos, neg)
{
rval.pos=NULL
rval.neg=NULL
for (i in 1:length(pos)){
pp=pos[i]
nn=neg[i]
n.pos=sum(sample(c(rep(T, pp), rep(F, nn)), pp+nn, replace=T))
n.neg=pp+nn-n.pos
rval.pos=c(rval.pos, n.pos)
rval.neg=c(rval.neg, n.neg)
}
return (list(rval.pos, rval.neg))
}
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.