## submitted by Anantha Prasad 1/26/98
path.rpart <- function(tree, nodes, pretty = 0, print.it = TRUE)
{
if (!inherits(tree, "rpart"))
stop("Not a legitimate \"rpart\" object")
splits <- labels.rpart(tree, pretty = pretty)
frame <- tree$frame
n <- row.names(frame)
node <- as.numeric(n)
which <- descendants(node) # ancestors are columns
path <- list()
if (missing(nodes)) {
xy <- rpartco(tree)
while(length(i <- identify(xy, n = 1L, plot = FALSE)) > 0L) {
path[[n[i]]] <- path.i <- splits[which[, i]]
if (print.it) {
cat("\n", "node number:", n[i], "\n")
cat(paste(" ", path.i), sep = "\n")
}
}
} else {
if (length(nodes <- node.match(nodes, node)) == 0L)
return(invisible())
for (i in nodes) {
path[[n[i]]] <- path.i <- splits[which[, i]]
if (print.it) {
cat("\n", "node number:", n[i], "\n")
cat(paste(" ", path.i), sep = "\n")
}
}
}
invisible(path)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.