Nothing
predict.mars <-
function (object, newdata, ...)
{
if (missing(newdata)) {
z <- fitted(object)
if (is.null(z))
stop("need to supply newdata")
else return(z)
}
model.matrix.mars(object, newdata) %*% object$coefficients
}
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.