Data Science Desktop Survival Guide
by Graham Williams |
|||||
The Original C5.0 Implementation |
The C50 package interfaces the original C code of the C5.0 implementation by Ross Quinlan, the developer of the decision tree induction algorithm.
library(C50)
model <- C5.0(form, ds[tr, vars])
|
model
|
C5imp(model)
|
plot(model)
I am not aware of any converter from a C5.0 tree to an rpart tree and so fancyRpartPlot() will not be useful here.
|