I have the following data.tree structure.
d <- structure(list(SUBZONE = c("A1", "A2", "A3", "A4", "A8", "B10", "B11", "B2", "B3", "B4"),
ZONE = c("A", "A", "A", "A", "A", "B", "B", "B", "B", "B"),
ID = c(1L, 2L, 3L, 4L, 5L, 7L, 8L, 9L, 10L, 11L)),
.Names = c("SUBZONE", "ZONE", "ID"),
row.names = c(NA, 10L),
class = "data.frame")
d$pathString <- paste("all", d$ZONE,d$SUBZONE, sep = "/")
alltree <-as.Node(d)
plot(alltree)
This tree has three different levels, according to the graph and alltree$Get(function(x) c(level = x$level))
:
I want to achieve two things when formatting this plot:
- Color by level the boxes,
- Label by label.
I don't know how to access the levels even though I tried. In this case I have "named" nodes but it's not the case for all the trees I have so I want to acces them by its level number.
You can get a collection of all the nodes in a level by using
Traverse
:This allows you to color the nodes as required like this:
Which gives this result:
In terms of plotting the levels, I cannot find any native way to do this within the package itself, though presumably if you export to
DiagrammeR
format this would be possible.