Calculates the mean of the probabilities of the different metrics.
D2MCS::Methodology
-> ProbBasedMethodology
Inherited methods
new()
Method for initializing the object arguments during runtime.
ProbBasedMethodology$new(required.metrics = c("MCC", "PPV"))
required.metrics
A character vector of length greater than 2 with the name of the required metrics.
compute()
Function to compute the probability of the final prediction based on different metrics.
ProbBasedMethodology$compute(
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 numeric value indicating the probability of the instance is predicted as positive class.
clone()
The objects of this class are cloneable with this method.
ProbBasedMethodology$clone(deep = FALSE)
deep
Whether to make a deep clone.
Methodology