Plot a decision tree
Value
The return value of rpart.plot, called
for its side effect of drawing the tree.
Examples
# \donttest{
model <- tl_model(iris, Species ~ ., method = "tree")
tl_plot_tree(model)
#> Warning: Cannot retrieve the data used to build the model (so cannot determine roundint and is.binary for the variables).
#> To silence this warning:
#> Call rpart.plot with roundint=FALSE,
#> or rebuild the rpart model with model=TRUE.
# }
