I would like to know how to calculate the false negative, the true negative, the false positive and the true positive to form a confusion matrix. A numeric example would clear all doubts I think. Thanks.
Confusion matrix, false negative
-2
$\begingroup$
matrices
3 Answers
1
True positives are cases predicted positive which are actual positive
False positives are cases predicted positive which are actual negative (false alarms)
False negatives are cases predicted negative which are actual positive (missed cases)
True negatives are cases predicted negative which are actual negative
Just count these up and put them in your confusion matrix. If you want rates, Wikipedia has a concise description.