Given the following table of predictions vs. actual states:
A B C D
A 11 9 4 3
B 2 120 3 6
C 1 1 9 3
D 0 0 0 0
You can see that none of the actual states are D. I wish to calculate some confusion table metrics (I can handle the multi-level issue), but the 0 cells for D mean that I'll have some undefined outcomes. Is it valid to add 0.5 to every cell in the table then calculate the metrics? If so, does this have a formal name?