No. Run some computer simulations of rounding 1000 random numbers if you don’t believe us.
Here’s another way to look at it: When you’re rounding you’re actually adding or subtracting a value to your original number so that the last digit becomes zero. If you’re doing this operation a lot, it’s better if the amount you’re adding or subtracting averages out over time so you don’t introduce a bias to your data.
Assume that you’re just rounding off one digit to keep it simple. And that your data is evenly distributed so that each different digit occurs 1/10 of the time in the least significant position. If you always round up on x.5, this is what happens:
x.0 → occurs 10% of the time, add 0.0
x.1 → occurs 10% of the time, subtract 0.1
x.2 → occurs 10% of the time, subtract 0.2
x.3 → occurs 10% of the time, subtract 0.3
x.4 → occurs 10% of the time, subtract 0.4
x.5 → occurs 10% of the time, add 0.5
x.6 → occurs 10% of the time, add 0.4
x.7 → occurs 10% of the time, add 0.3
x.8 → occurs 10% of the time, add 0.2
x.9 → occurs 10% of the time, add 0.1
Note that the 10% of the time you subtract 0.1 is balanced by the 10% of the time you add 0.1 … no bias is introduced. And the same is true for where you add and subtract 0.2, 0.3, and 0.4. Over a large number of samples, the rounding cancels out.
But 10% of the time you add 0.5 with nothing to balance it. That means over a large number of samples you’ll be bumping your data slightly higher on average.
If, on the other hand, you use the round to even rule you get this:
x.0 → occurs 10% of the time, add 0.0
x.1 → occurs 10% of the time, subtract 0.1
x.2 → occurs 10% of the time, subtract 0.2
x.3 → occurs 10% of the time, subtract 0.3
x.4 → occurs 10% of the time, subtract 0.4
even.5 → occurs 5% of the time, subtract 0.5
odd.5 → occurs 5% of the time, add 0.5
x.6 → occurs 10% of the time, add 0.4
x.7 → occurs 10% of the time, add 0.3
x.8 → occurs 10% of the time, add 0.2
x.9 → occurs 10% of the time, add 0.1
Now you’ll wind up adding 0.5 as often as you subtract 0.5 and the bias is eliminated. See?