ClassificationMetrics
ClassificationMetrics(
TestData,
Thresholds,
Target,
PredictColumnName,
PositiveOutcome,
NegativeOutcome,
CostMatrix = c(0, 1, 1, 0)
)
Test data from your modeling
Value
Name of your target variable
Name of your predicted value variable
The value of the positive outcome level
The value of the negative outcome level
c(True Positive Cost, False Negative Cost, False Positive Cost, True Negative Cost)
Other Model Evaluation:
BinaryMetrics()
,
DT_BinaryConfusionMatrix()
,
MultiClassMetrics()
,
RegressionMetrics()
,
RemixClassificationMetrics()