This thing is not even close to being done, so please help with ideas and contributions.

d3_party(tree = NULL, json = TRUE)

Arguments

tree

partykit object to be converted

json

logical to return list or json

Value

list or json depending on json arg

Examples

if (FALSE) { library(d3r) # from ?rpart data("kyphosis", package="rpart") d3_party( rpart::rpart(Kyphosis ~ Age + Number + Start, data = kyphosis) ) # if you want the list instead of json d3_party( rpart::rpart(Kyphosis ~ Age + Number + Start, data = kyphosis), json = FALSE ) # with ctree instead of rpart # using example from ?ctree d3_party(partykit::ctree(Species ~ .,data = iris)) #devtools::install_github("timelyportfolio/d3treeR") library(d3treeR) d3tree2( d3_party( rpart::rpart(Kyphosis ~ Age + Number + Start, data = kyphosis) ), celltext = "rule", valueField = "n" ) }