model.frame.rpart <- function(formula, ...)
{
m <- formula$model
if (!is.null(m)) return(m)
oc <- formula$call
if (substring(deparse(oc[[1L]]), 1L, 7L) == "predict") {
m <- eval(oc$newdata)
if (is.null(attr(m, "terms"))) {
object <- eval(oc$object)
m <- model.frame(object$terms, m, na.rpart)
}
return(m)
}
while(!deparse(oc[[1L]]) %in% c("rpart", "rpart::rpart", "rpart:::rpart"))
oc <- eval(oc[[2L]])$call
oc$subset <- names(formula$where)
oc$method <- formula$method
eval(oc)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.