Last updated
Last updated
A generic S3 function to compute the confusion matrix for a
classification model. This function dispatches to S3 methods incmatrix()
and performs no input validation. If you supply NA values or
vectors of unequal length (e.g. length(x) != length(y)
), the
underlying C++
code may trigger undefined behavior and crash your R
session.
Defensive measures
Because cmatrix()
operates on raw pointers, pointer-level faults (e.g.
from NA or mismatched length) occur before any R
-level error handling.
Wrapping calls in try()
or tryCatch()
will not prevent R
-session
crashes.
To guard against this, wrap cmatrix()
in a "safe" validator that
checks for NA values and matching length, for example:
Apply the same pattern to any custom metric functions to ensure input
sanity before calling the underlying C++
code.
The workhorse
cmatrix()
is the main function for classification metrics with cmatrix
S3 dispatch. These functions internally calls cmatrix()
, so there is a
signficant gain in computing the confusion matrix first, and then pass
it onto the metrics. For example:
A named k
x k
<matrix>
There is no robust defensive measure against misspecifying the confusion matrix. If the arguments are passed correctly, the resulting confusion matrix is on the form:
James, Gareth, et al. An introduction to statistical learning. Vol. 112. No. 1. New York: springer, 2013.
Hastie, Trevor. "The elements of statistical learning: data mining, inference, and prediction." (2009).
Pedregosa, Fabian, et al. "Scikit-learn: Machine learning in Python." the Journal of machine Learning research 12 (2011): 2825-2830.
weighted.cmatrix.factor
R Documentation
actual
, predicted
A pair of <integer> or <factor> vectors of length n
, and k
levels.
w
A <double> vector of sample weights.
...
Arguments passed into other methods.
A (Predicted)
B (Predicted)
A (Actual)
Value
Value
B (Actual)
Value
Value