Nothing
print.AUCRF <-
function(x,...){
cat("\nNumber of selected variables: Kopt=",x$Kopt,"\n")
cat("AUC of selected variables: OOB-AUCopt=",x$"OOB-AUCopt","\n")
if(!is.null(x$cvAUC)) cat("AUC from cross validation:",x$cvAUC,"\n")
cat("Importance Measure:",x$ImpMeasure,"\n")
cat("\n")
if(is.null(x$Psel))
res <- data.frame("Selected Variables"=x$Xopt, Importance=x$ranking[x$Xopt])
else
res <- data.frame("Selected Variables"=x$Xopt, Importance=x$ranking[x$Xopt], Prob.Select=x$Psel[x$Xopt])
rownames(res) <- NULL
print(res)
}
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.