Convert an rpart object to a data.tree structure
the rpart object to be converted
the number of digits to be used for numeric values in labels
logical. Add cases to labels, see text.rpart for further
information
any other argument to be passed to generic sub implementations
a data.tree object. The tree contains a field rpart.id which
references back to the original node id in the row names of the rpart object.
Other as.Node:
as.Node.data.frame(),
as.Node.dendrogram(),
as.Node.list(),
as.Node.phylo(),
as.Node()
if (require(rpart)) {
fit <- rpart(Kyphosis ~ Age + Number + Start, data = kyphosis)
as.Node(fit)
}
#> Loading required package: rpart
#> levelName
#> 1 Start>=8.5
#> 2 ¦--Start>=14.5
#> 3 ¦ ¦--absent
#> 4 ¦ °--Age< 55
#> 5 ¦ ¦--absent
#> 6 ¦ °--Age>=111
#> 7 ¦ ¦--absent
#> 8 ¦ °--present
#> 9 °--present