I've build a C5.0 decesion Tree using package c50 in R. I want to visualize the tree in R. Instead of using plot function in R due to aesthetics, I perferd plotting tree using this answer.
Objective is to get probability of each class and the percentage of cases falling in that class at each node, which I can think can be done using fancyRpartplot. To do that I need the model to be an Rpart object. Can I convert C50 model to an Rpart object?
In case if it can not be done can I achieve this objective using graphviz solution which I am using or any other solution?