d3_party | R Documentation |
This thing is not even close to being done, so please help with ideas and contributions.
d3_party(tree = NULL, json = TRUE)
tree |
|
json |
|
list
or json
depending on json
arg
## Not run:
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"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.