Skip to contents

Visualize the subgroups (i.e., the student tree) from a causal distillation tree object.

Usage

plot_cdt(cdt, show_digits = 2)

Arguments

cdt

A causal distillation tree object, typically the output of causalDT.

show_digits

Number of digits to show in the plot labels. Default is 2.

Value

A plot of the causal distillation tree.

Examples

n <- 200
p <- 10
X <- matrix(rnorm(n * p), nrow = n, ncol = p)
Z <- rbinom(n, 1, 0.5)
Y <- 2 * Z * (X[, 1] > 0) + X[, 2] + rnorm(n, 0.1)

cdt <- causalDT(X, Y, Z)
plot_cdt(cdt)