Nothing
thresholds = function(x, y, xthr, ythr){
if(!missing(y)){
xn <- cbind(x, y)
}else{
xn <- x
}
if(!is.numeric(xthr) | !is.numeric(ythr))
stop("'xthr' and 'ythr' must be numeric vectors")
bx <- (xn[,1]<=xthr)
by <- (xn[,2]<=ythr)
nbx <- !bx
nby <- !by
return(rbind(c(sum( bx&nby), sum(nbx&nby)),
c(sum( bx& by), sum(nbx& by))))
}
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.