Nothing
if (!isGeneric("boxplot")) {
setGeneric("boxplot", function(x, ...)
standardGeneric("boxplot"))
}
setMethod('boxplot', signature(x='ModelEvaluation'),
function(x, notch=TRUE, ...) {
comb <- c(x@presence, x@absence)
group <- c(rep('presence', length(x@presence)), rep('absence', length(x@absence)) )
boxplot(comb~group, notch=notch, data=data.frame(comb,group), ...)
}
)
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.