Abstract class used as a template to define new customized strategies to combine the class predictions made by different metrics.
new()
Method for initializing the object arguments during runtime.
CombinedMetrics$new(required.metrics)
required.metrics
A character vector of length greater than 2 with the name of the required metrics.
getRequiredMetrics()
The function returns the required metrics that will participate in the combined metric process.
CombinedMetrics$getRequiredMetrics()
A character vector of length greater than 2 with the name of the required metrics.
getFinalPrediction()
Function used to implement the strategy to obtain the final prediction based on different metrics.
CombinedMetrics$getFinalPrediction(
raw.pred,
prob.pred,
positive.class,
negative.class
)
raw.pred
A character list of length greater than 2 with the class value of the predictions made by the metrics.
prob.pred
A numeric list of length greater than 2 with the probability of the predictions made by the metrics.
positive.class
A character with the value of the positive class.
negative.class
A character with the value of the negative class.
A logical value indicating if the instance is predicted as positive class or not.
clone()
The objects of this class are cloneable with this method.
CombinedMetrics$clone(deep = FALSE)
deep
Whether to make a deep clone.
CombinedVoting