ggparty

'ggplot' Visualizations for the 'partykit' Package


License
GPL-2.0+

Documentation

ggparty

ggplot2 visualizations for the partykit package.

Install

devtools::install_github("mmostly-harmless/ggparty", 
                          dependencies=TRUE)

Example

library(ggparty)

data("TeachingRatings", package = "AER")
tr <- subset(TeachingRatings, credits == "more")

tr_tree <- lmtree(eval ~ beauty | minority + age + gender + division + native +
                    tenure, data = tr, weights = students, caseweights = FALSE)

ggparty(tr_tree, terminal_space = 0.5, horizontal = F) +
  geom_edge(size = 1.5) +
  geom_node_splitvar(fontface = "bold", size = 8) +
  geom_edge_label(colour = "grey", size = 6) +
  geom_nodeplot(gglist = list(geom_point(aes(x = beauty,
                                             y = eval,
                                             col = tenure,
                                             shape = minority),
                                         alpha = 0.8),
                              expression(
                                geom_line(data = predict_data,
                                          aes(x = beauty,
                                              y = prediction),
                                          col = "blue",
                                          size = 1.2)),
                              theme_bw(base_size = 15)),
                scales = "fixed",
                id = "terminal",
                shared_axis_labels = T,
                predict_arg = list(newdata = function(x) {
                  data.frame(beauty = seq(min(x$beauty),
                                           max(x$beauty),
                                           length.out = 100))
                }))

Travis build status