Row 1, p(1)=0.82, Row 5, p(1)=0.26
If you choose a threshold of 0.10 then...
row 1: 0.82 > 0.10, so predicts a 1
row 5: 0.26 > 0.10, so predicts a 1
If you choose a threshold of 0.50 then...
row 1: 0.82 > 0.50, so predicts a 1
row 5: 0.26 < 0.50, so predicts a 0
If you choose a threshold of 0.90 then...
row 1: 0.82 < 0.90, so predicts a 0
row 5: 0.26 < 0.90, so predicts a 0
As you see, you can change the predictions by picking a threshold, however row 1 will always trend to a 1 more than row 5. Picking a threshold is often done by looking at the ROC curve, and usually depends on how much you value positive errors over negative errors.
Cliff