Nothing
plot.rpart <- function(x, uniform = FALSE, branch = 1, compress = FALSE,
nspace, margin = 0, minbranch = 0.3, branch.col = 1,
branch.lty = 1, branch.lwd = 1, ...)
{
if (!inherits(x, "rpart")) stop("Not a legitimate \"rpart\" object")
if (nrow(x$frame) <= 1L) stop("fit is not a tree, just a root")
if (compress & missing(nspace)) nspace <- branch
if (!compress) nspace <- -1L # means no compression
## if (dev.cur() == 1L) dev.new() # not needed in R
parms <- list(uniform = uniform, branch = branch, nspace = nspace,
minbranch = minbranch)
## define the plot region
temp <- rpartco(x, parms)
xx <- temp$x
yy <- temp$y
temp1 <- range(xx) + diff(range(xx)) * c(-margin, margin)
temp2 <- range(yy) + diff(range(yy)) * c(-margin, margin)
plot(temp1, temp2, type = "n", axes = FALSE, xlab = "", ylab = "", ...)
## Save information per device, once a new device is opened.
assign(paste0("device", dev.cur()), parms, envir = rpart_env)
# Draw a series of horseshoes or V's, left son, up, down to right son
# NA's in the vector cause lines() to "lift the pen"
node <- as.numeric(row.names(x$frame))
temp <- rpart.branch(xx, yy, node, branch)
if (branch > 0) text(xx[1L], yy[1L], "|")
lines(c(temp$x), c(temp$y), col = branch.col, lty = branch.lty,
lwd = branch.lwd)
invisible(list(x = xx, y = yy))
}
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.