getErrorMeasures-methods | R Documentation |
Computes various error measures for the classification of a data set.
Let TP be the number of correctly classified matches (true positives), TN the number of correctly classified non-matches (true negatives), FP and FN the number of misclassified non-matches and matches (false positives and false negatives). The calculated error measures are:
FN/(TP+FN)
FP/(TN+FP)
(TP+TN)/(TP+TN+FP+FN)
TP/(TP+FP)
TP/(TP+FN)
TN/(TN+FP)
Positive predictive value:TP/(TP+FP)
Negative predictive value:TN/(TN+FN)
A list with components alpha
, beta
, accuracy
,
precision
, sensitivity
, specificity
, ppv
and
npv
, each a number in the range [0,1].
signature(object = "RecLinkResult")
Method for S3 result objects of class "RecLinkResult"
signature(object = "RLResult")
Method for S4 objects of class "RLResult"
,
from classification of big data objects (see "RLBigData"
,
"RLBigDataDedup"
, "RLBigDataLinkage"
)
A wrapper function errorMeasures(result)
exists for compatibility with package version
0.2.
Record pairs with unknown true matching status (e.g. due to missing
values in the argument identity
to RLBigDataDedup
)
and possible links are not counted, which can distort the values returned
by this function.
Murat Sariyar, Andreas Borg
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.