Sensitivity is a measure of the proportion of actual positive cases that got predicted as positive (or true positive).
D2MCS::MeasureFunction
-> Sensitivity
new()
Method for initializing the object arguments during runtime.
Sensitivity$new(performance.output = NULL)
performance.output
An optional ConfMatrix
parameter
to define the type of object used as basis to compute the
Sensitivity
measure.
compute()
The function computes the Sensitivity achieved by the M.L. model.
Sensitivity$compute(performance.output = NULL)
performance.output
An optional ConfMatrix
parameter
to define the type of object used as basis to compute the
Sensitivity measure.
This function is automatically invoke by the ClassificationOutput object.
clone()
The objects of this class are cloneable with this method.
Sensitivity$clone(deep = FALSE)
deep
Whether to make a deep clone.
$$Sensitivity = TP / (TP + FN)$$
MeasureFunction
, ClassificationOutput
,
ConfMatrix