[R] strange behaviour with equality after simple subtraction
Bert Gunter
gunter.berton at gene.com
Fri Jan 26 18:16:44 CET 2007
FAQ on R 7.31. ?all.equal ?identical
Have you read these?
Bert Gunter
Genentech Nonclinical Statistics
South San Francisco, CA 94404
-----Original Message-----
From: r-help-bounces at stat.math.ethz.ch
[mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of Mike Prager
Sent: Friday, January 26, 2007 8:41 AM
To: r-help at stat.math.ethz.ch
Subject: Re: [R] strange behaviour with equality after simple subtraction
"martin sikora" <martin.sikora at upf.edu> wrote:
> today while trying to extract data from a list for subsequent analysis, i
> stumbled upon this funny behavior on my system:
>
> > x<-c(0.1,0.9)
>
> > 1-x[2]
>
> [1] 0.1
>
> > x[1]
>
> [1] 0.1
>
> > x[1]==1-x[2]
>
> [1] FALSE
>
> > x[1]>1-x[2]
>
> [1] TRUE
>
Not at all strange, an expected property of floating-point
arithmetic and one of the most frequently asked questions here.
> print(0.1, digits=17)
[1] 0.1
> print(1 - 0.9, digits=17)
[1] 0.09999999999999998
>
A simple description of the issue is at
http://docs.python.org/tut/node16.html
In most cases, it suffices to test for approximate difference or
relative difference. The former would look like this
if (abs(x[1] - x[2]) < eps)) ...
with "eps" set to something you think is an insignificant
difference, say 1.0e-10.
--
Mike Prager, NOAA, Beaufort, NC
* Opinions expressed are personal and not represented otherwise.
* Any use of tradenames does not constitute a NOAA endorsement.
______________________________________________
R-help at stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
More information about the R-help
mailing list