On 03-01-2013, at 18:44, Christofer Bogaso wrote:
> I happened to see these:
>
>> round(.5, 0)
> [1] 0
>> round(1.5, 0)
> [1] 2
>> round(2.5, 0)
> [1] 2
>> round(3.5, 0)
> [1] 4
>> round(4.5, 0)
> [1] 4
>
>
> What is the rule here?
>
> Should not round(.5, 0) = 1, round(2.5, 0) = 3 etc?
?ro
On Jan 3, 2013, at 11:44 AM, Christofer Bogaso
wrote:
> I happened to see these:
>
>> round(.5, 0)
> [1] 0
>> round(1.5, 0)
> [1] 2
>> round(2.5, 0)
> [1] 2
>> round(3.5, 0)
> [1] 4
>> round(4.5, 0)
> [1] 4
>
>
> What is the rule here?
>
> Should not round(.5, 0) = 1, round(2.5, 0) = 3 etc?
?round explicitly says:
Note that for rounding off a 5, the IEC 60559 standard is expected to be
used, â*go to the even digit*â. Therefore round(0.5) is 0 and round(-1.5)is
-2. However, this is dependent on OS services and on representation error
(since e.g. 0.15 is not represented exactly, th
3 matches
Mail list logo