Is there a direct way to visualize a c5.0 decision tree? Here my code:
library(C50)
data(churn)
myTree = C5.0(x = churnTrain[, -20], y = churnTrain$churn)
summary(myTree)
I am getting a long list of C5.0 objects from a program that I do not control but I could convert it into something else if that is absolutely necessary. Any ideas/pointers are highly appreciated.