By default, C5.0 measures predictor importance by determining the percentage
of training set samples that fall into all the terminal nodes after the
split (this is used when metric = "usage"
). For example, the
predictor in the first split automatically has an importance measurement of
100 percent. Other predictors may be used frequently in splits, but if the
terminal nodes cover only a handful of training set samples, the importance
scores may be close to zero. The same strategy is applied to rule-based
models as well as the corresponding boosted versions of the model.
There is a difference in the attribute usage numbers between this output and
the nominal command line output. Although the calculations are almost
exactly the same (we do not add 1/2 to everything), the C code does not
display that an attribute was used if the percentage of training samples
covered by the corresponding splits is very low. Here, the threshold was
lowered and the fractional usage is shown.
When metric = "splits"
, the percentage of splits associated with each
predictor is calculated.