Assigned mistake costs can rank the same threshold rows differently from a plain summary column. This lesson pins the costs first, then recomputes exact totals from visible FP and FN counts.
highlighted = computed this step
Assign costs first
Before choosing from the same threshold rows, pin the toy costs. A false positive costs 4, and a false negative costs 1. The table recomputes every total from the visible FP and FN counts.
cost=4⋅FP+1⋅FN
Threshold 5 has low assigned cost
At threshold 5, FP=0 and FN=2. The assigned total is 2.
t=5:4⋅0+1⋅2=2
The other totals are larger
Threshold 3 has assigned total 5. Threshold 1 has assigned total 8 even though its F1 summary is 3/4.
t=3⇒5,t=1⇒8,F1(t=1)=3/4
Cost is a stated policy
With these assigned toy costs, the lowest total chooses threshold 5. This is an assigned-cost table for this toy setting, not a universal metric and not a claim about future rows.