Nothing
compute.empirical.AUC <-
function(X,Y) {
comp <- outer(Y, X, "-")
comp <- replace(comp, is.na(comp), 0)
auc <-(sum(comp<0) + 0.5*sum(comp==0))/length(as.vector(comp))
auc
}
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.