C50 (version 0.1.1)

predict.C5.0: Predict new samples using a C5.0 model

Description

This function produces predicted classes or confidence values from a C5.0 model.

Usage

# S3 method for C5.0
predict(object, newdata = NULL,
  trials = object$trials["Actual"], type = "class", na.action = na.pass,
  ...)

Arguments

object

an object of class C5.0

newdata

a matrix or data frame of predictors

trials

an integer for how many boosting iterations are used for prediction. See the note below.

type

either "class" for the predicted class or "prob" for model confidence values.

na.action

when using a formula for the original model fit, how should missing values be handled?

other options (not currently used)

Value

when type = "class", a factor vector is returned. When type = "prob", a matrix of confidence values is returned (one column per class).

Details

Note that the number of trials in the object my be less than what was specified originally (unless earlyStopping = FALSE was used in C5.0Control(). If the number requested is larger than the actual number available, the maximum actual is used and a warning is issued.

Model confidence values reflect the distribution of the classes in terminal nodes or within rules.

For rule-based models (i.e. not boosted), the predicted confidence value is the confidence value from the most specific, active rule. Note that C4.5 sorts the rules, and uses the first active rule for prediction. However, the default in the original sources did not normalize the confidence values. For example, for two classes it was possible to get confidence values of (0.3815, 0.8850) or (0.0000, 0.922), which do not add to one. For rules, this code divides the values by their sum. The previous values would be converted to (0.3012, 0.6988) and (0, 1). There are also cases where no rule is activated. Here, equal values are assigned to each class.

For boosting, the per-class confidence values are aggregated over all of the trees created during the boosting process and these aggregate values are normalized so that the overall per-class confidence values sum to one.

When the cost argument is used in the main function, class probabilities derived from the class distribution in the terminal nodes may not be consistent with the final predicted class. For this reason, requesting class probabilities from a model using unequal costs will throw an error.

References

Quinlan R (1993). C4.5: Programs for Machine Learning. Morgan Kaufmann Publishers, http://www.rulequest.com/see5-unix.html

See Also

C5.0(), C5.0Control(), summary.C5.0(), C5imp()

Examples

Run this code
# NOT RUN {
data(churn)

treeModel <- C5.0(x = churnTrain[, -20], y = churnTrain$churn)
predict(treeModel, head(churnTest[, -20]))
predict(treeModel, head(churnTest[, -20]), type = "prob")


# }

Run the code above in your browser using DataCamp Workspace