Measure to compare true observed labels with predicted labels in multiclass classification tasks.
Arguments
- truth
(
factor())
True (observed) labels. Must have the same levels and length asresponse.- response
(
factor())
Predicted response labels. Must have the same levels and length astruth.- sample_weights
(
numeric())
Vector of non-negative and finite sample weights. Must have the same length astruth. The vector gets automatically normalized to sum to one. Defaults to equal sample weights.- ...
(
any)
Additional arguments. Currently ignored.
Details
The Classification Error is defined as $$ \frac{1}{n} \sum_{i=1}^n w_i \mathbf{1} \left( t_i \neq r_i \right), $$ where \(w_i\) are normalized weights for each observation \(x_i\).
See also
Other Classification Measures:
acc(),
bacc(),
logloss(),
mauc_aunu(),
mbrier(),
mcc(),
zero_one()