Exporting ctree object to Asymptote
[This article was first published on R snippets, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
When producing regression or classification trees (standard rpart or ctree from party package) in GNU R I am often unsatisfied with the default plots they produce. One of many possible solutions is to export a tree plot to Asymptote.Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
The code I have prepared generates an Asymptote file based on generated ctree object. Here is the procedure that does the conversion.
treeAsy <- function(tree, # ctree to be plotted
off.f, # tree plot fixed shift
off.v, # tree plot variable shift
file.name, # output file name
preamble) { # preamble for asy
minv <- +Inf
maxv <- –Inf
response <- names(tree@responses@variables)
plot.node <- function(root,
nest = 0, # level in a tree
pOffset = 0, # plotting offset
condition = “root”, # split condition text
id = “root”) { # block name in asy
if (length(root$prediction) > 1) {
stop(“Only single prediction value supported”)
}
if (root$prediction < minv) minv <<- root$prediction
if (root$prediction > maxv) maxv <<- root$prediction
child.l <- “”
child.r <- “”
if (!root$terminal) {
if (class(root$psplit) == “orderedSplit”) {
varN <- root$psplit$variableName
point <- root$psplit$splitpoint
left <- paste(varN, “$\\leq$”, point, sep=“”)
right <- paste(varN, “$>$”, point, sep=“”)
} else {
stop(“Only orderedSplit supported”)
}
add <- “add(new void(picture pic, transform t) {
blockconnector operator –=blockconnector(pic,t);\n “
child.l <- paste(plot.node(root$left, nest + 1,
pOffset – off.f – 1 / off.v ^ nest,
left, paste(id,“l”,sep=“”)),
add,id,“–Down–Left–Down–“,id,“l;\n});\n\n”, sep=“”)
child.r <- paste(plot.node(root$right, nest + 1,
pOffset + off.f + 1 / off.v ^ nest,
right, paste(id,“r”,sep=“”)),
add,id,“–Down–Right–Down–“,id,“r;\n});\n\n”, sep=“”)
}
paste(“block “, id, ” = rectangle(Label(\””,
condition, “\”),
pack(Label(\”n=”, sum(root$weights), “\”),
Label(\””, response, “=”,
format(root$prediction), “\”)),
(“, pOffset, “,”, –nest, “), lightgray, col(“,
root$prediction, “));”,
“\ndraw(“, id,“);\n\n”,
child.l, child.r, sep=“”)
}
treestruct <- plot.node(tree@tree)
cat(file=file.name,
preamble,
“\nimport flowchart;\n”,
“pen col(real x) {
real minv = “, minv, “;
real maxv = “, maxv, “;
real ratio = 1 – (x – minv) / (maxv – minv);
return rgb(1, ratio, ratio);
}\n\n”,
treestruct, “\n”, sep=“”)
shell(paste(“asy -f png”, file.name))
}
Each node on the plot contains: the condition leading to it, number of observations and response variable prediction (also intensity of red indicates its relative value).
In order to keep the example simple it is very simplified. Currently handles only regression trees with continuous predictors and will generate errors if variable names contain TeX special characters (like &). Additionally you can control the tree layout only manually by setting variables off.f and off.v or by manipulating picture size in the preamble (and one could write a code to layout the plot automatically).
The code produces png output as I needed this format to show the picture on blog, but of course you can generate eps or pdf file which is probably a more suitable option.
And there is the example of the code use based on standard ctree example:
library(party)
airq <- subset(airquality, !is.na(Ozone))
airct <- ctree(Ozone ~ ., data = airq)
treeAsy(airct, –0.25, 1.4, “tree.asy”,
“size(22cm,12cm, keepAspect=false);”)
It gives the following output:
Which is much nicer for me in comparison to default plot generated by plot(airct):
To leave a comment for the author, please follow the link and comment on their blog: R snippets.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.