evaluation.goodness {fdm2id} | R Documentation |
Goodness
Description
Evaluation predictions of a classification model according to Goodness index.
Usage
evaluation.goodness(predictions, gt, beta = 1, positive = levels(gt)[1], ...)
Arguments
predictions |
The predictions of a classification model ( |
gt |
The ground truth ( |
beta |
The weight given to precision. |
positive |
The label of the positive class. |
... |
Other parameters. |
Value
The evaluation of the predictions (numeric value).
See Also
evaluation.accuracy
, evaluation.fmeasure
, evaluation.fowlkesmallows
, evaluation.jaccard
, evaluation.kappa
, evaluation.precision
,
evaluation.precision
, evaluation.recall
,
evaluation
Examples
require (datasets)
data (iris)
d = iris
levels (d [, 5]) = c ("+", "+", "-") # Building a two classes dataset
d = splitdata (d, 5)
model.nb = NB (d$train.x, d$train.y)
pred.nb = predict (model.nb, d$test.x)
evaluation.goodness (pred.nb, d$test.y)
[Package fdm2id version 0.9.9 Index]