Rpart2newick function

Converts 'rpart' object into Newick tree

Converts 'rpart' object into Newick tree

Rpart2newick(rpart.object)

Arguments

  • rpart.object: 'rpart' object, output of rpart::rpart()

Returns

Newick tree (text string).

Details

Inspired by 'shaunpwilkinson/rpart2dendro.R' gist.

Examples

library(rpart) (fit <- rpart(Kyphosis ~ Age + Number + Start, data=kyphosis)) plot(fit); text(fit, all=TRUE, xpd=TRUE) library(ape) tree1 <- read.tree(text=Rpart2newick(fit)) plot(tree1) nodelabels(tree1$node.label, frame="none", bg="transparent", adj=-0.1) (fit2 <- rpart(Species ~ ., data=iris)) plot(fit2); text(fit2, all=TRUE, xpd=TRUE) tree2 <- read.tree(text=Rpart2newick(fit2)) plot(tree2) nodelabels(tree2$node.label, frame="none", bg="transparent", adj=-0.1)
  • Maintainer: ORPHANED
  • License: GPL (>= 2)
  • Last published: 2023-02-05

Useful links