C5.0Control(subset = TRUE,
bands = 0,
winnow = FALSE,
noGlobalPruning = FALSE,
CF = 0.25,
minCases = 2,
fuzzyThreshold = FALSE,
sample = 0,
seed = sample.int(4096, size = 1) - 1L,
earlyStopping = TRUE,
label = "outcome")FALSE, meaning no attempted gropings will be evaluated during the tree growing stage.TRUE, the model orders the rules by their affect on the error rate and groups the rules into the specified number of bands. This modifies the output so that the effect on the error rate can be seen for the grC5.0, predict.C5.0, summary.C5.0, C5impdata(churn)
treeModel <- C5.0(x = churnTrain[, -20], y = churnTrain$churn,
control = C5.0Control(winnow = TRUE))
summary(treeModel)Run the code above in your browser using DataLab