Nothing
confusion.fda <-
function (object, data, ...)
{
if (missing(data))
return(object$confusion)
Terms <- terms(object)
attr(Terms, "intercept") <- 0
m <- model.frame(Terms, data)
x <- model.matrix(Terms, m)
g <- model.extract(m, "response")
confusion.default(predict(object, x, ...), g)
}
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.