I have been learning to use the R RecordLinkage package recently. On a very small example with linking 2 datasets, one with 8 rows and the other with 11, I get the results:
Linkage Data Set
8 records in data set 1
11 records in data set 2
8 record pairs
4 matches
4 non-matches
0 pairs with unknown status
Weight distribution:
[0.4,0.5] (0.5,0.6] (0.6,0.7] (0.7,0.8] (0.8,0.9] (0.9,1]
2 0 2 0 1 3
3 links detected
0 possible links detected
5 non-links detected
alpha error: 0.250000
beta error: 0.000000
accuracy: 0.875000
Classification table:
classification
true status N P L
FALSE 4 0 0
TRUE 1 0 3
What am failing to understand, is the relationship between the alpha error, beta error and accuracy with the Classification table. Where are the figures below coming from exactly, how are they calculated:
alpha error: 0.250000
beta error: 0.000000
accuracy: 0.875000
Any help greatly appreciated